rwxrob-dot/scripts/istext
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

10 lines
114 B
Bash
Executable File

#!/bin/sh
if [ ! -e "$1" ]; then
exit 0
fi
out=$(file --mime-type "$1")
out=${out#* }
typ=${out%%/*}
echo $typ