Files
linux-workspace/rc/functions.sh
Martin Blazik d919e1e493 Add ffile command
Combination of file and type
2020-11-14 07:23:22 +01:00

12 lines
132 B
Bash

function jql() {
jq -C . "$@" | less -r
}
function ffile() {
local filename="$1"
shift
file $(type -p "$filename") $@
}