dotfiles/.local/bin/scripts/b

21 lines
839 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
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 exists but is not accessible
test -r "$(dirname $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;;
2020-11-16 11:29:31 +00:00
*binary) ;;
2021-07-29 10:44:51 +00:00
*) $elevate bat --style header --force-colorization "$@" | 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