bin/whatdoesitlooklike: quickly present all of the file types in your term

This commit is contained in:
japh 2016-03-27 09:32:35 +02:00
parent 604d7b927f
commit 12435ac9b3

4
bin/whatdoesitlooklike Normal file
View file

@ -0,0 +1,4 @@
#!/bin/sh
# vim:ft=sh:
mkdir -p ./tmp
for x in $(grep -Po '^(\.\w+)' ../LS_COLORS); do touch ./tmp/"${x}"; done