Skip to content

Instantly share code, notes, and snippets.

@yoshikaw
Created March 3, 2011 02:14
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 yoshikaw/852192 to your computer and use it in GitHub Desktop.
Save yoshikaw/852192 to your computer and use it in GitHub Desktop.
zsh履歴ファイルのUNIX時間を人に優しい形にするperlワンライナー
cat ~/.zsh_history | perl -pe 's/: (\d+):/@a=(localtime($1));sprintf("[%04d\/%02d\/%02d %02d:%02d] ",$a[5]+1900,$a[4]+1,@a[3,2])/eg;'
<<出力例>>
[2010/12/28 13:00] 0;ls -altr
[2010/12/28 13:00] 0;svn update
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment