mirror of
https://github.com/trapd00r/LS_COLORS.git
synced 2024-11-18 09:30:37 +01:00
5 lines
112 B
Text
5 lines
112 B
Text
|
#!/bin/sh
|
||
|
# vim:ft=sh:
|
||
|
mkdir -p ./tmp
|
||
|
for x in $(grep -Po '^(\.\w+)' ../LS_COLORS); do touch ./tmp/"${x}"; done
|