-
-
Save m4nh/c6ec48f2fe0ca4c8690f8bb74f02e443 to your computer and use it in GitHub Desktop.
#bash #for #loop to #print indices #zeropadding
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
#!/bin/bash | |
for i in $(seq -f "%05g" 00 10 50); | |
do | |
echo $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment