vote up 0 vote down star

Possible Duplicate:
“Must Have” Text/Terminal Apps?

What tools/utilities that made your CLI life more plesant. My personal not full list will probably consist of:

What is your list?

flag
Belongs on super user. And once it has been migrated there, it will be closed instantly as a duplicate: superuser.com/questions/18730/… – Stephan202 Nov 23 at 20:21

migrated from stackoverflow.com Nov 24 at 6:14

closed as exact duplicate by ~quack, Phoshi, Diago Nov 24 at 6:14

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question.

6 Answers

vote up 1 vote down
  • grep : Usefull to plough through a lot of source code finding the specific string you need ;).
  • find : Same as above. Usefull to pass a script to a bunch of files based on a match.
  • dos2unix : Converting DOS line-endings to UNIX. Since I'm developing on a Windows machine while some collegeaus develop on Linux.
  • screen : Multiple screens on a single terminal window is nice :-). Could conncet more than once tho.
  • awk

And off course: fortune

:-)

link|flag
fortune simply isn't complete without cowsay. – Phoshi Nov 23 at 21:18
1  
apt-get moo :-) – Sathya Nov 23 at 22:06
vote up 0 vote down

Not a tool per se, but the tips here made it much better for me, especially things mentioned in the "histappend" and "configuring Up and Down" sections

Also, learning rsync and scp makes working with multiple computers easier, combined with screen.

link|flag
vote up 0 vote down

May I suggest autojump?

link|flag
vote up 0 vote down

irssi can be invaluable :-) especially when stuck on Arch install ;)

link|flag
a curses-based communications app? i'd disagree with classifying it as either cli or utility. i can launch firefox from the commandline; that doesn't make it a cli utility. – ~quack Nov 23 at 22:47
vote up 0 vote down

I would recommend tmux (instead of screen) and weechat (instead of irssi).

link|flag
what's wrong with both? Screen is invaluble for working over ssh, and irssi is still (imo) the best IRC client around. – Phoshi Nov 23 at 22:14
There is nothing wrong with these two. I´ve used them for more than a half decade. But screen´s codesbase and configuration is a mess and irssi isn´t that modular. Besides weechat has some nifty features that lack irssi. – Flow Nov 24 at 9:31
vote up 0 vote down
  • apropos, man, info et al. - ask linux before you google; you often already have the answer!
  • sed - awesome for data manipulation inside a pipeline
  • tail -f /var/log/messages & to see error messages onscreen as they occur, not hours later when I think to look in the log
  • emacs - yeah... EMACS. Vim is great but so is EMACS.
  • script - handy for knowing what you did. especially handy to learn about new packages. You can put zcat whatever-README.gz, 'man -P cat whatever-subject', whatever-command --help all in one file.
link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.