Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unix one liner? It this possible? 2

Status
Not open for further replies.

jouell

MIS
Nov 19, 2002
304
US
Hi,

I'd like to do something like this:

[[ -e $GREP ]] || echo $GREP does not exist ; exit 1

or


[[ -e $GREP ]] || echo $GREP does not exist && exit 1



But it seems the script exits regardless. How can I exit a script and send a warning to the user on the same line?


Thanks!
-John

 
[[ -e $GREP ]] || {echo $GREP does not exist && exit 1 }

vlad
+----------------------------+
| #include<disclaimer.h> |
+----------------------------+
 
[[ -e $GREP ]] || { echo $GREP does not exist ; exit 1; }

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ181-2886
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top