From 12435ac9b39037c6ff27c628a2b85f515e135531 Mon Sep 17 00:00:00 2001 From: japh Date: Sun, 27 Mar 2016 09:32:35 +0200 Subject: [PATCH] bin/whatdoesitlooklike: quickly present all of the file types in your term --- bin/whatdoesitlooklike | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 bin/whatdoesitlooklike diff --git a/bin/whatdoesitlooklike b/bin/whatdoesitlooklike new file mode 100644 index 0000000..fe17b91 --- /dev/null +++ b/bin/whatdoesitlooklike @@ -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