dotfiles/.local/bin/scripts/b

31 lines
1.1 KiB
Plaintext
Raw Normal View History

2021-09-20 09:14:34 +00:00
#!/bin/bash
2021-07-29 14:02:20 +00:00
# [b]rowse - custom ls or bat depending on file type
# Show type & contents of given files or PWD
2021-10-15 11:41:05 +00:00
# depends: tput stat bat neovim
2021-11-02 12:00:02 +00:00
# args: files to inspect
2020-12-10 16:34:56 +00:00
2021-07-13 10:15:58 +00:00
set -eo pipefail
2021-11-02 12:00:02 +00:00
# get the last arg or current dir
2020-11-16 11:29:31 +00:00
for last; do true; done
last=${last:-.}
2020-12-10 16:34:56 +00:00
# Elevate permissions if the file is not accessible
test -x "$(dirname "$last")" &&
{ test -r "$last" || ! test -e "$last"; } ||
elevate=sudo
tput setaf 4 && $elevate file -E "$last" | { grep -v --color=never 'directory$' || true; }
2020-12-10 16:34:56 +00:00
2021-07-13 10:15:58 +00:00
case "$($elevate file --dereference --mime "$last")" in
(*inode/directory*) tput sgr0 && $(test -x "$last" || echo "sudo") ls -l --color=always --human-readable --group-directories-first --file-type --dereference-command-line --all "$@" | less -XF;;
(*binary)
if expr "$(file "$last")" : ".*: .*compress" >/dev/null
then /usr/share/nvim/runtime/macros/less.sh "$@"
fi
tput setaf 3 && $elevate stat --format '%A size %sB, birth: %.10w mod %.10y' "$last"
;;
(*) $elevate bat --style header "$@" --pager 'less -RXF'
tput setaf 3 && $elevate stat --format '%A size %sB, birth: %.10w mod %.10y' "$last"
# TODO don't duplicate stat
;;
2020-11-16 11:29:31 +00:00
esac