Skip to content

Instantly share code, notes, and snippets.

@Hiroshiba
Created October 23, 2018 11:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Hiroshiba/31d8dd60c40ded5ab66b2ef3a2a56980 to your computer and use it in GitHub Desktop.
Save Hiroshiba/31d8dd60c40ded5ab66b2ef3a2a56980 to your computer and use it in GitHub Desktop.
ファイル周りのスニペット
# findで見つけたファイルの最新-最古unixタイムを得るコマンド
echo `find [dir] [filter] -printf '%C@\n' | sort | awk 'NR==1; END{print}'` | awk '{print ($2 - $1)}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment