LoginSignup
1
3

More than 5 years have passed since last update.

修論卒論pdfの遊び方

Last updated at Posted at 2017-02-02

あそびかた

皆さまお疲れ様です.
終わってから提出ディレクトリで遊んでました.
さて,楽しいコマンドは以下から

  • pdfページ数一覧
find .  -name "*.pdf" ! -name ".*"|xargs -n1 pdfinfo|grep Pages|sort
  • 提出時間を集計
find .  -name "*.pdf" ! -name ".*"|xargs -n1 pdfinfo|grep CreationDate|sed -e "s/^.* \([0-9][0-9]:[0-9][0-9]\).*$/\1/"|sort -n|uniq -c
  • ファイル容量一覧
find .  -name "*.pdf" ! -name ".*"|xargs ls -lu|du -h|sort -n
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3