Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- COUNTER=0
- while [ $COUNTER -lt 100000 ]; do
- let COUNTER=COUNTER+1
- touch file${COUNTER}.txt
- rm file${COUNTER}.txt
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement