- Updated all component headers and documentation
- Changed navbar and footer branding
- Updated homepage hero badge
- Modified page title in index.html
- Simplified footer text to 'Built with ❤️'
- Consistent V2 capitalization across all references
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
|