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
RAW Paste Data