dotfiles/.local/bin/scripts/b

24 lines
997 B
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
2020-12-10 16:34:56 +00:00
2021-07-13 10:15:58 +00:00
set -eo pipefail
2020-12-10 16:34:56 +00:00
# gets 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
2021-07-29 10:44:51 +00:00
*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;;
2021-10-15 11:41:05 +00:00
*binary) expr "$(file "$last")" : ".*compressed" >/dev/null && /usr/share/nvim/runtime/macros/less.sh "$@";;
*) $elevate bat --style header "$@" --pager='less -XF'
2021-07-13 10:15:58 +00:00
tput setaf 3 && $elevate stat --format '%A size %sB, birth: %.10w mod %.10y' "$last"
;;
2020-11-16 11:29:31 +00:00
esac