Skip to content

Instantly share code, notes, and snippets.

@kjivan
Last active December 14, 2021 06:15
Show Gist options
  • Save kjivan/cde163a8d8ac9e6daf5c98b1cd5f09b3 to your computer and use it in GitHub Desktop.
Save kjivan/cde163a8d8ac9e6daf5c98b1cd5f09b3 to your computer and use it in GitHub Desktop.
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