Top-5 commands
So, I should probably start with some nice introduction, about how much I like to use terminal application. But I don't. Let's quickly cut to the chase.
What are my top-used commands?
I have two main computers I use every day (or at least 5 days a week): MacBook Air M1 and Dell XPS (Ubuntu 22.04). Let's check what are my top-5 used commands on each of them. Will use the following one-liner to check it:
history | cut -c 8- | cut -d " " -f 1 | sort | uniq -c | sort
MacBook:
69 git
76 clear
86 cd
104 vim
156 ls
Dell:
110 grep
124 vim
240 cd
241 ls
584 git
The result is not much of a surprise. I use MacBook mostly for fun, some file management, etc. In contrary, Dell is my work laptop, where most of the task are related to working with git repositories, managing configuration files, etc.
Quite what I have expected.