aboutsummaryrefslogtreecommitdiff
path: root/node_modules/exit/test/fixtures/create-files.sh
blob: 6a526de00a26e7a23f30089b08581df4f9af7896 (plain)
1
2
3
4
5
6
7
8
#!/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