mirror of
https://github.com/rwxrob/dot
synced 2024-11-14 18:12:56 +00:00
10 lines
114 B
Bash
Executable File
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
|
|
|