Created
November 27, 2017 09:28
-
-
Save aljorhythm/763d39eb553639e9f1579d8dfe4d4387 to your computer and use it in GitHub Desktop.
Output filenames in directory, delimited by tabs
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
ls > list.txt.temp ; awk {'printf ("%s\t\n", $0) > "list.tsv";'} list.txt.temp; rm list.txt.temp |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment