mirror of
				https://gitea.com/actions/setup-python.git
				synced 2025-10-31 17:18:07 +07:00 
			
		
		
		
	
		
			
				
	
	
		
			9 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			205 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/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
 |