You are not logged in.
I want to know how many times I have used any program. Because I have installed some applications that I did not end using them really. ¿Is there such a feature that allows me to know the frequency of a program usage? maybe like Windows does but perhaps with more details.
Thanks.
Offline
Well, I don't know if there's a way of checking usage frequency of every program (no matter how you started it), but here's a little gem for ranking your 10 (or more, depending on how many lines you filter with head) most frequently used terminal commands:
history | tr '\011' ' ' | tr -s ' ' | cut -d ' ' -f 3 | sort | uniq -c | sort -nbr | head -n 10…from this thread. ![]()
Offline