Unable to find exit status of piped command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Unable to find exit status of piped command
# 8  
Old 09-27-2011
can you post the output of the below command

Code:
 
sipsak -vv -s sip:192.168.1.3

And let us know, what string you want to extract
# 9  
Old 09-27-2011
Quote:
[root@wiki ~]# sipsak -vv -s sip:192.168.1.3

message received:
SIP/2.0 200 OK
Via: SIP/2.0/UDP 127.0.0.1:60334;branch=z9hG4bK.5e2be44e;alias;received=64.34.95.104;rport=60334
From: sip:sipsak@127.0.0.1:60334;tag=ed51c6c
To: sip:192.168.1.3;tag=as4448381b
Call-ID: 248847468@127.0.0.1
CSeq: 1 OPTIONS
Server: PBX_MANAGER
Allow: INVITE, ACK, CANCEL, OPTIONS, BYE, REFER, SUBSCRIBE, NOTIFY, INFO, PUBLISH
Supported: replaces
Contact: <sip:192.168.1.3:5060>
Accept: application/sdp
Content-Length: 0



** reply received after 2.666 ms **
SIP/2.0 200 OK
final received
Want to extract 200 after the "reply received" line"
Quote:
[root@wiki ~]# sipsak -vv -s sip:192.168.1.3|grep -A 1 "reply received after"|grep SIP|awk '{print $2}'
200
# 10  
Old 09-27-2011
Code:
Lois_Answer_Code=$(sipsak -vv -s sip:192.168.1.3 | awk '/reply received after/ {getline; if($0~/SIP/){print $2}}')

# 11  
Old 09-27-2011
And what about the exit status?
# 12  
Old 09-27-2011
What shell are you using?

Newer Korn, and Bash, shells have pipefail:
Code:
$ ls blah 2>&1 | grep .
ls: blah: No such file or directory
$ echo $?
0

$ set -o pipefail
$ ls blah 2>&1 | grep .
ls: blah: No such file or directory
$ echo $?
2

$ echo ${PIPESTATUS[@]}  # BASH - show the exit status of all commands in the pipeline
2 0

# 13  
Old 09-27-2011
Quote:
Originally Posted by proactiveaditya
HTML Code:
Lois_Answer_Code=`sipsak -vv -s sip:192.168.1.3|grep -A 1 "reply received after"|grep SIP|awk '{print $2}'`
How to find the exit status of |
You could run it in a subshell and store the exit status in a file until it's needed.
Code:
Lois_Answer_Code=$((sipsak -vv -s sip:192.168.1.3; echo $? > status) | grep ... )
sipssak_exit_status=$(cat status)


Regards,
Alister
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Exit Status of Command

Hi All, I am doing an export and import (datapump) of 4 schema. I know we can do an export of 4 schema in one command. But just want to know how to check the exit status if i do the export/import of 4 schema in different commands in background. Please suggest. Thanks, Mani (1 Reply)
Discussion started by: pvmanikandan
1 Replies

2. UNIX for Dummies Questions & Answers

Exit Status Of Find Command

Hello All, I am trying to capture the exit status of find command and want to delete the files only when it is successful. But it is always returning me as success even if the pattern of that file doesn't exist in the current directory. please help, checked manual page but couldn't able to figure... (6 Replies)
Discussion started by: Ariean
6 Replies

3. Shell Programming and Scripting

how to exit status of a piped process ???

Hi, I've searched the related threads both in this forum and others in google and found the solution to be working too in most of the places. But somehow it's not working for me. $cmd | tee -a $LOGFILE & pid=$! wait ${pid} ret=$? echo "$ret" I want the exit status of the $cmd.... (8 Replies)
Discussion started by: ashwini.engr07
8 Replies

4. UNIX for Advanced & Expert Users

Equivalents of tee command to find exit status of command

Hi, Want to log the output of command & check the exit status to find whether it succeeded or failed. > ls abc ls: abc: No such file or directory > echo $? 1 > ls abc 2>&1 | tee log ls: abc: No such file or directory > echo $? 0 Tee commands changes my exit status to be always... (7 Replies)
Discussion started by: vibhor_agarwali
7 Replies

5. HP-UX

Logins command exit status is 236 not 0

I have noticed that on version 11.23 I get exit status 236 from the following command: logins -oxl root ; echo $? > 236 However on 11.31 I get the expected code 0 logins -oxl root ; echo $? > 0 The output is correct for both versions and contains no error data. Can anyone explain... (2 Replies)
Discussion started by: parkea2
2 Replies

6. Shell Programming and Scripting

Find exit status problem

Hi All Its strange or i am doing it wrong.When find run successful it return exit status 0.And same if it didn't run successfully it return zero. find /var/www/html -maxdepth 1 -type f -name *.dsadas echo $? 0 find /var/www/html -maxdepth 1 -type f -name *.php... (1 Reply)
Discussion started by: aliahsan81
1 Replies

7. UNIX for Dummies Questions & Answers

Move Command and exit status problem

Hi All, I am using the following code to move files from one folder to another on the remote server: ssh username@server <<EOF cd source_dir find . -type f -name "*.txt" |xargs -n1000 -i{} mv {} dest_dir if then send mail indicating error otherwise echo "success" fi EOF ... (1 Reply)
Discussion started by: visingha
1 Replies

8. Shell Programming and Scripting

Getting the exit status of a remote command

Hi to everyone. How can I get the exit status from a remote command executed with rexec? :eek: machine A has RedHat Linux 9 and the remote machine B has SCO UNIX. Code: rexec -l user -p password host sh /u/files/scripts/seq_cal.sh 2006 08 I want the exit status returned by... (1 Reply)
Discussion started by: zoonalex
1 Replies

9. UNIX for Dummies Questions & Answers

how to find the exit status for the last executed command

I am executing a find command in my script i.e find $2 -type f -name '*.gif' -mtime +$1 -exec rm {} \; how do i check that this command is executed properly.. i would lke t trap the errror and display my error message kinly help.. this is an urgent issue. (1 Reply)
Discussion started by: vijay.amirthraj
1 Replies

10. Programming

How to find the exit status of last command in Unix?

Hi, I want to find the exit status of the last executed command in C Shell. Tried $? but getting the error Variable syntax...$? does not seem to work in C shell.. is there any other command in C shell to find the exit status of last command? Thanks in advance, raju (1 Reply)
Discussion started by: rajugp1
1 Replies
Login or Register to Ask a Question