My build of nnn with minor changes
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12345678910111213
  1. #!/usr/bin/env sh
  2. # Description: Show media information of a file in pager
  3. #
  4. # Dependencies: mediainfo
  5. #
  6. # Shell: POSIX compliant
  7. # Author: Arun Prakash Jana
  8. if [ -n "$1" ] && [ -f "$1" ]; then
  9. mediainfo "$1" | $PAGER
  10. # exiftool "$1" | $PAGER
  11. fi