My build of nnn with minor changes
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
 
 

12 lignes
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