My build of nnn with minor changes
Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
 
 
 
 
 
 

12 linhas
184 B

  1. #!/usr/bin/env sh
  2. # Description: View a file in hex
  3. # Requires: xxd and $PAGER
  4. #
  5. # Shell: POSIX compliant
  6. # Author: Arun Prakash Jana
  7. if ! [ -z "$1" ]; then
  8. xxd "$1" | $PAGER
  9. fi