mirror of
https://github.com/Azure/k8s-deploy.git
synced 2026-06-25 22:29:26 +08:00
08d466b6ab
Co-authored-by: Oliver King <oking3@uncc.edu>
9 lines
205 B
Bash
Executable File
9 lines
205 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
rm 10*.txt
|
|
for n in 10 100 1000; do
|
|
node log.js 0 $n stdout stderr &> $n-stdout-stderr.txt
|
|
node log.js 0 $n stdout &> $n-stdout.txt
|
|
node log.js 0 $n stderr &> $n-stderr.txt
|
|
done
|