Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'A bash script to speak network status' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
A bash script to speak network status
Authored by: merlyn on Jan 12, '06 10:32:16PM
You can replace;

...
SOMECOMMAND
if test "${?}" = 0
...
with simply

...
if SOMECOMMAND
...


[ Reply to This | # ]