Below is the sample script which i am trying to execute; but it fails to fetch the exit status of $cmd
; is there any other way to fetch its exit status..!?
cmd="curl -mddddddd google.com"
status=$($cmd | wc -l)
echo ${PIPESTATUS[0]}
I know that, if i replace status=$($cmd | wc -l)
with $cmd | wc -l
, i could fetch the exit status of $cmd
using PIPESTATUS
. But in my case i have to assign it to a variable (example: status in above case).
Please help me here..!
Regards, Rohith