Skip to content

Instantly share code, notes, and snippets.

@gudrutis
Created August 15, 2018 14:48
Show Gist options
  • Save gudrutis/a16da25a67b697f72987b48e5796bbe6 to your computer and use it in GitHub Desktop.
Save gudrutis/a16da25a67b697f72987b48e5796bbe6 to your computer and use it in GitHub Desktop.
Piping to while in bash
while read i; do echo $i ; grep -Fxq "## IMPORT data-build-github" $i; echo $? ; done < <(ls | grep ^data-)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment