O'Reilly Answers is a community site for sharing knowledge, asking questions, and providing answers that brings together our customers, authors, editors, conference speakers, and Foo (Friends of O'Reilly). More »
Answered by macnlos : Jul 08 2011 06:29 AM
If you have been working with HPUX for 15 years your struggle will not be with what to do on the system, but more of how to do it. In many cases it will be similar commands but with different paramet... full answer >
This excerpt from vi and Vim Editors Pocket Reference, Second Edition provides a rundown of helpful substitution tips for vi.You can instruct vi to ignore case by typing :set ic.
A simple :s is the sa...
Many Unix, Linux, and Mac OS X users enjoy using the powerful, platform-agnostic text editors vi and Vim, but there are far too many commands for anyone to remember. The following excerpt from the rec...
How do you write a "traditional" loop (say, to go through some block of code 25
times) in a Unix shell script? In bash, it's simple:
for ((i = 0; i < 25; i++ ))
do
...
done
You...
If you use the awesomely versatile and lightening fast mutt email client and you have it set to cryptographically sign each outgoing message by default using PGP or the free and rock solid GPG, then y...
If you use the bash shell (in Unix/Linux) you know how awesome and helpful the .bash_history file is. It lets you hit the up-arrow on your keyboard over and over to review/edit/re-use complex commands...