My build of nnn with minor changes
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 
 
 

14 行
256 B

  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