What are your top ten command lines?

amejiarosario

Adrian Mejia

Posted on June 20, 2019

What are your top ten command lines?

Run the following command list to find out!

history | cut -c8- | sort | uniq -c | sort -rn | head -n 10
Enter fullscreen mode Exit fullscreen mode

Mine is the following:

image

Since I used a lot of aliases, here is the expanded version:

  1. git status (alias gst)
  2. git push (alias ggpush='git push origin "$(git_current_branch)"')
  3. git commit (alias gca='git commit -v -a')
  4. ls (list files current directory)
  5. code . (opening visual studio in the current folder)
  6. git pull (alias ggpull='git pull origin "$(git_current_branch)"')
  7. .. (go back previous directoy)
  8. grunt serve (alias eos='cd "$LOCKHART"/eos && git pull origin "$(git_current_branch)"; grunt serve')
  9. git checkout master (alias gco='git checkout')
  10. grunt karma:... (run unit tests)
💖 💪 🙅 🚩
amejiarosario
Adrian Mejia

Posted on June 20, 2019

Join Our Newsletter. No Spam, Only the good stuff.

Sign up to receive the latest update from our blog.

Related