![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | 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 and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| will this script in crontab effect SUN 9?? | thepurple | SUN Solaris | 2 | 10-05-2007 04:31 AM |
| Temporarily Disable User Account | scotbuff | HP-UX | 4 | 01-26-2007 04:01 AM |
| How do properties effect script? | Chiefos | UNIX for Dummies Questions & Answers | 1 | 06-21-2006 06:23 AM |
| Effect of Preemptive Kernel | sriram.ec | UNIX for Advanced & Expert Users | 2 | 03-15-2006 01:43 AM |
| recursive effect!! | sskb | UNIX for Dummies Questions & Answers | 2 | 01-30-2003 12:05 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | 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 05:25 PM.. Reason: typo2 |
|
||||
|
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 04:26 AM.. |
| Sponsored Links | ||
|
|