Skip to content

Instantly share code, notes, and snippets.

@namikingsoft
Last active January 4, 2021 22:08
Show Gist options
  • Save namikingsoft/02c7d15ccbed7c59118bd4c259421c4e to your computer and use it in GitHub Desktop.
Save namikingsoft/02c7d15ccbed7c59118bd4c259421c4e to your computer and use it in GitHub Desktop.
Repeat count snipet
seq 10 | while read; do
echo "close local variable"
done
# bash
<<(seq 10) while read; do
echo "open variable"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment