Skip to content

Instantly share code, notes, and snippets.

@7kaji
Last active August 29, 2015 14:02
Show Gist options
  • Save 7kaji/b3e5fb26e9f56ebcca40 to your computer and use it in GitHub Desktop.
Save 7kaji/b3e5fb26e9f56ebcca40 to your computer and use it in GitHub Desktop.
history | awk '{print $2}'| sort | uniq -c | sort -nr | head -20
cat ~/.zsh_history | nkf -u | ruby -lane 'time, cmd = $_.scan(/^: (\d+):\d;(.+)$/)[0]; puts cmd.split(/\s/)[0] if time.to_i > Time.now.to_i-60*60*24' | sort | uniq -c | sort -nr | head
cat ~/.zsh_history | nkf -u | ruby -lane 'time, cmd = $_.scan(/^: (\d+):\d;(.+)$/)[0]; puts cmd.split(/\s/)[0] if time.to_i > Time.now.to_i-60*60*24' | sort | uniq -c | sort -nr | tail
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment