Skip to content

Instantly share code, notes, and snippets.

@aljorhythm
Created November 27, 2017 09:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save aljorhythm/763d39eb553639e9f1579d8dfe4d4387 to your computer and use it in GitHub Desktop.
Save aljorhythm/763d39eb553639e9f1579d8dfe4d4387 to your computer and use it in GitHub Desktop.
Output filenames in directory, delimited by tabs
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