Created
November 4, 2019 05:10
-
-
Save BenBroide/a8ee6d94beb020f6ddc8461b64ca9039 to your computer and use it in GitHub Desktop.
Bash outputting all files names in in Json format
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 -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