Last active
December 14, 2021 06:15
-
-
Save kjivan/cde163a8d8ac9e6daf5c98b1cd5f09b3 to your computer and use it in GitHub Desktop.
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
list="a b" | |
for x in $list; do | |
echo $x | |
done | |
for x in "a" "b"; do | |
echo $x | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment