Skip to content

Instantly share code, notes, and snippets.

@BenBroide
Created November 4, 2019 05:10
Show Gist options
  • Save BenBroide/a8ee6d94beb020f6ddc8461b64ca9039 to your computer and use it in GitHub Desktop.
Save BenBroide/a8ee6d94beb020f6ddc8461b64ca9039 to your computer and use it in GitHub Desktop.
Bash outputting all files names in in Json format
ls -1 | rev | cut -f 2- -d "." | rev | awk ' BEGIN { ORS = ""; print "["; } { print "\/\@"$0"\/\@"; } END { print "]"; }' | sed "s^\"^\\\\\"^g;s^\/\@\/\@^\", \"^g;s^\/\@^\"^g" > icons.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment