Skip to content

Instantly share code, notes, and snippets.

@mladenp
Created June 1, 2017 07:31
Show Gist options
  • Save mladenp/a4ef07613db18dc9fcfe7bc9663d2e74 to your computer and use it in GitHub Desktop.
Save mladenp/a4ef07613db18dc9fcfe7bc9663d2e74 to your computer and use it in GitHub Desktop.
Bash script - list recursively with find
find . -print0 | while IFS= read -r -d '' file
do
echo "$file"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment