Created
October 9, 2019 18:46
-
-
Save johnrizzo1/b981adc6bd2e88bd4d46ded0622d4a5c to your computer and use it in GitHub Desktop.
bash formatted string
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for i in $(seq 02 04); do | |
for j in $(seq 01 36); do | |
printf -v k "r%02dn%02d.sls\n" $i $j; | |
touch $k; | |
done; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment