Skip to content

Instantly share code, notes, and snippets.

@tkuchiki
Last active December 29, 2015 07:49
Show Gist options
  • Save tkuchiki/7639182 to your computer and use it in GitHub Desktop.
Save tkuchiki/7639182 to your computer and use it in GitHub Desktop.
stat usage
$ stat /path/to/file --print=%y
2012-07-17 21:23:33.497181920 +0900
$ stat /path/to/file --print=%y | sed -e 's/\..*//g'
2012-07-17 21:23:33
$ stat /path/to/file --print=%y | sed -e 's/\..*//g' | sed -e 's/\ /T/'
2012-07-17T21:23:33
$ stat /path/to/file --print=%y | sed -e 's/\ .*//g'
2012-07-17
$ stat /path/to/file | awk '{ print $2}' | sed -e "s/\..*//"
21:23:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment