![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| will this script in crontab effect SUN 9?? | thepurple | SUN Solaris | 2 | 10-05-2007 01:31 AM |
| Temporarily Disable User Account | scotbuff | HP-UX | 4 | 01-26-2007 12:01 AM |
| How do properties effect script? | Chiefos | UNIX for Dummies Questions & Answers | 1 | 06-21-2006 03:23 AM |
| Effect of Preemptive Kernel | sriram.ec | UNIX for Advanced & Expert Users | 2 | 03-14-2006 09:43 PM |
| recursive effect!! | sskb | UNIX for Dummies Questions & Answers | 2 | 01-30-2003 08:05 AM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
|||
|
Temporarily disable effect of set -e in ksh
Hi!
I'd like to temporarily disable effect of set -e before invoking some commands whose exit status can be ignored. The "e" flag can be off so the code below may improperly turn "e" on: set +x ... call function here ... set -x In Bash surrounding the command with parenthesis does work. How can I do it in ksh with a special character? Thanks u. Last edited by ugeek; 03-25-2007 at 02:25 PM. Reason: typo2 |
| Forum Sponsor | ||
|
|
|
|||
|
er, the clue is in your code...
set +e #disabled set -e or set +o errexit set -o errexit or catch the error in an if or || like: set -e cat flap || echo oops # now it will not exit or a blank label raise_error || : the error code is only observed when it is the last part of a pipeline Last edited by bigearsbilly; 03-28-2007 at 01:26 AM. |
|||
| Google The UNIX and Linux Forums |