Created
July 2, 2019 17:47
-
-
Save gchavez2/ca65291f34033cb6ce788ac62e387266 to your computer and use it in GitHub Desktop.
Loop in bash
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 VARIABLE in 1e-1 1e-2 1e-3 1e-4 1e-5 1e-6 1e-7 1e-8 1e-9 1e-10 1e-11 1e-12 1e-13 1e-14 1e-15 1e-16 | |
do | |
echo ${VARIABLE} | |
exit | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment