Skip to content

Instantly share code, notes, and snippets.

@Bost
Created August 16, 2017 13:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bost/186e423932a98a1cab521a69dbc597ea to your computer and use it in GitHub Desktop.
Save Bost/186e423932a98a1cab521a69dbc597ea to your computer and use it in GitHub Desktop.
fish: for-loop
function for-loop
set list \
"foo" \
"bar" \
"zee"
for item in $list
echo "item: $item"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment