Skip to content

Instantly share code, notes, and snippets.

@gchavez2
Created July 2, 2019 17:47
Show Gist options
  • Save gchavez2/ca65291f34033cb6ce788ac62e387266 to your computer and use it in GitHub Desktop.
Save gchavez2/ca65291f34033cb6ce788ac62e387266 to your computer and use it in GitHub Desktop.
Loop in bash
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