My build of nnn with minor changes
Вы не можете выбрать более 25 тем
Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
|
- #!/usr/bin/env sh
-
- # Description: View a file in hex
- # Dependencies: hx (https://github.com/krpors/hx)/xxd and $PAGER
- #
- # Shell: POSIX compliant
- # Author: Arun Prakash Jana
-
- if [ -n "$1" ]; then
- if which hx >/dev/null 2>&1; then
- hx "$1"
- else
- xxd "$1" | $PAGER
- fi
- fi
|