My build of nnn with minor changes
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 
 
 
 
 

14 行
254 B

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