Command Line Magic

@climagic
19.9K Followers
254 Following
1.9K Posts
Cool Unix/Linux Command Line tricks you can use. Here mostly to inspire all to try more. Read docs first, run later.
More info:http://www.climagic.org/
Support me by buying from my eBay storehttps://www.ebay.com/usr/suso6gq3
Had the fortune of meeting Michael Elkins (left), the creator of the mutt email client, today while at the Information Sciences Institute.
Bad UX design demonstrated in one form field.

Vim users: If you'd like to highlight the whole line the cursor is on:

:set cursorline

I just used that when examining package output from dpkg -l so that I could easily see which description matched each package.

All I wanted to do was copy a file.
This Minecraft MMO server has "command line terminals" in it. Non-functional, but I approve.
play.stardew.net
I had forgotten how unixy the Amiga shell is.
Please vote.
(And yes, these are VT100 keycaps)

If you are a user of geeqie (a nice *nix photo viewer) and need to start a second session, but don't want it to interfere with the first, you can use the -n option:

geeqie -n

Check 'man geeqie' for a bunch of other useful options.

That one time they let me make the agenda posters. #tbt

Add some spice to your text by randomly coloring each word in a text file.

head -n30 cat_haiku.txt | awk 'BEGIN{srand()} RS=" " {c=int(rand()*200)+32;printf "\033[38;5;" c "m" $0 "\033[0m "}'