TITLE: Commands I Use AUTHOR: Eugene Wallingford DATE: February 20, 2023 10:18 AM DESC: ----- BODY: Catching up on articles in my newsreader and ran across Commands I Use by @gvwilson. That sounded like fun, and I was game:
    $ history | awk '{print $2}' | sort | uniq -c | sort -nr > commands.txt
The first four items on my list are essentially the same as Wilson's, and there are a lot of other similarities, too. I don't think this is surprising, given how Unix works and how much sense git makes for software developers to use. It's interesting to see that I use rm and /bin/rm in roughly even measure. I would have guessed that I used the guarded command in higher proportion. At the bottom of the tally are a few items I don't use often, or don't generally launch from the command line: ... and a bunch of typos, including: That was fun! Thanks to Greg for the prompt. -----