Last active
January 4, 2021 22:08
-
-
Save namikingsoft/02c7d15ccbed7c59118bd4c259421c4e to your computer and use it in GitHub Desktop.
Repeat count snipet
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
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