Created
November 2, 2017 15:01
-
-
Save Fintan/f2e784140b3dbdf2124f6c976d5e6e43 to your computer and use it in GitHub Desktop.
output the contents of the current directory in a single space delimited string
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
| str=''; for entry in ./*; do str+=" ./$entry"; done; echo "$str" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment