Created
September 2, 2013 09:59
-
-
Save fedir/6411212 to your computer and use it in GitHub Desktop.
List all files in current folder
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
| #!/bin/bash | |
| find . -type f -print0 | while read -d $'\0' file | |
| do | |
| echo "$file" | |
| done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment