Created
June 1, 2017 07:31
-
-
Save mladenp/a4ef07613db18dc9fcfe7bc9663d2e74 to your computer and use it in GitHub Desktop.
Bash script - list recursively with find
This file contains hidden or 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
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