Created
April 29, 2019 02:54
-
-
Save alex-harvey-z3q/1e09d0502516d87ca4ea6805c8611adf to your computer and use it in GitHub Desktop.
This file contains 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
# test.sh | |
#!/usr/bin/env bash | |
for n in aaa bbb ccc ; do | |
mv $n $n.bak ## Quoting not required if | |
done ## inputs are known. | |
for n in ddd/* ; do | |
mv "$n" "$n.bak" ## Quoting *is* required if | |
done ## we don't trust the input. | |
### | |
▶ shellcheck test.sh ; echo $? | |
0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment