0

http://blogs.techrepublic.com.com

A number of tricks and shortcuts can save you time and keystrokes when you’re using bash to knock out various chores. Here are five handy tips to get you started.

Full story »
the_borg10001101's picture
Created by the_borg10001101 11 years 44 weeks ago
Category: High End   Tags:
stargrave's picture

stargrave

11 years 44 weeks 3 days 11 hours ago

0

Better way

./configure ; make ; make install

It is better to use "&&" instead of ";" in most cases there. "&&" is logical AND, and it means that shell should check this expression, by evaluation commands and checking their return code status. If some command will fail -- processing of following commands will be stopped. Why do we need to do "make install" if make is failed, for example?

Best karma users