My build of nnn with minor changes
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 
 
 

16 строки
294 B

  1. #!/usr/bin/env sh
  2. # Description: View a file in hex
  3. # Dependencies: hx (https://github.com/krpors/hx)/xxd and $PAGER
  4. #
  5. # Shell: POSIX compliant
  6. # Author: Arun Prakash Jana
  7. if [ -n "$1" ]; then
  8. if which hx >/dev/null 2>&1; then
  9. hx "$1"
  10. else
  11. xxd "$1" | $PAGER
  12. fi
  13. fi