![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| help with return codes | ammu | Shell Programming and Scripting | 2 | 02-04-2008 02:57 PM |
| Return Codes | kris01752 | UNIX for Advanced & Expert Users | 3 | 09-25-2006 01:40 PM |
| Return codes | Bab00shka | UNIX for Dummies Questions & Answers | 4 | 02-02-2006 01:46 PM |
| unix return codes | abhib45 | UNIX for Dummies Questions & Answers | 1 | 01-27-2006 01:47 AM |
| Help with Return codes | leezer1204 | UNIX for Dummies Questions & Answers | 1 | 04-26-2005 01:10 PM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
How do you Sum UNIX return codes
Hi,
I know how to read a return code after executing a single command. "echo $?". But I do not know how to sum the return code for a group of commands. If I string 3 commands together and I do an echo $? all I get is the retunr code for the last command. Example below: ---------------------------- cat file1 | cut -f1-5 | sort > file2 status=$? if [ $status -eq 0 ]; then ##continue with rest of my script else exit fi ----------------- I only get the return code for the last command, the "sort" command. I want to make sure that the return code for all three commands added togther =0. Can this be done? The problem is I need to amke sure all 3 commands ran succesful. My status check only tells me the last commadn worked. Thanks in advance for any assistance. |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|