hide stdout but need exit status


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting hide stdout but need exit status
# 1  
Old 06-29-2010
hide stdout but need exit status

Hi:

Code:
echo "Escriba el nombre de usuario: \c"
read user

lsuser -a $user 2>/dev/null || (echo "Usuario no valido en el sistema. Abortando." &&  exit 1)

I want:
- If 'lsuser -a $user' fails, script exits but hide stderr.
- If 'lsuser -a $user' succeeds, script continue, and hide stdout.

thx in advance
Israel.

Last edited by pludi; 06-29-2010 at 01:03 PM.. Reason: code tags, please...
# 2  
Old 06-29-2010
Quote:
Originally Posted by iga3725
Hi:

echo "Escriba el nombre de usuario: \c"
read user

lsuser -a $user 2>/dev/null || (echo "Usuario no valido en el sistema. Abortando." && exit 1)

I want:
- If 'lsuser -a $user' fails, script exits but hide stderr.
- If 'lsuser -a $user' succeeds, script continue, and hide stdout.

thx in advance
Israel.
1>/dev/null at the end of your statement which outputs to the screen.
# 3  
Old 06-29-2010
but if I use 1>/dev/nulll when 'lsuser -a $user' fails I see stderr on screen...I want to hide stderr or stdout on both ways (fails or succeeds)

regards
Israel.
# 4  
Old 06-29-2010
Code:
lsuser -a $user 2>/dev/null 1>/dev/null

# 5  
Old 06-29-2010
Code:
lsuser -a $user 1>/dev/null 2>/dev/null

# 6  
Old 06-29-2010
Maybe
Code:
lsuser -a $user >/dev/null 2>&1 || (echo "Usuario no valido en el sistema. Abortando." && exit 1)

# 7  
Old 06-29-2010
umm.. there is something odd here... I realized the problem is in (echo "Usuario no valido en el sistema. Abortando." && exit 1) string... if I use:

lsuser -a $user >/dev/null 2>&1 || exit 1 it works

do you know why?
I'm using ksh93 on AIX.

thanks again
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 in the script

Hi all, I am trying to use a script (a.sh) which is calling another script(b.sh). And I want to use the exit code(set by me) of b.sh in a.sh. I am using this in b.sh #!/bin/sh <-- code --> if ; then exit 0 else exit 1 fiBut... (2 Replies)
Discussion started by: Raj999
2 Replies

2. Shell Programming and Scripting

Want to get the exit status

Hi All, I am trying to create a zip file with all the txt files(these are in large number) in the current directory. I am able to do this operation sucessfully. After this i want to get the status of the tar command executed and do accordingly. When i am trying with the below code, the status... (3 Replies)
Discussion started by: paddu
3 Replies

3. Shell Programming and Scripting

Exit Status

I have a shell script (#!/bin/sh) that interacts with Appworx and Banner Admin. In my script I want to check the exit status of awrun before continuing. awrun can run for 10 seconds or it can run for over a minute. So my question is, will it go through my if statement before awrun may even be... (2 Replies)
Discussion started by: smkremer
2 Replies

4. Shell Programming and Scripting

Hide status value from awk system command

Hi, When i use the system( ) function inside a awk, i am getting the ouput with a 0 appended in a new line. Can someone guide me to eliminate the extra line containing 0. Ex : awk -F"|" '{print system("convert.sh" $1}' The output is displayed with 0 in a new line. ... (8 Replies)
Discussion started by: muruganksk
8 Replies

5. Shell Programming and Scripting

Exit status

I'm preparing for exam and one of exams is to write own test command... I wonder if in unix is a command which just returns exit code you specify.. I know I can easily write a function like this: exStatus() { return $1 } -> my question is rather theoretical thank you! (9 Replies)
Discussion started by: MartyIX
9 Replies

6. Shell Programming and Scripting

How to get the exit status

Hi all, I'm running a program which return 1 upon success. But when encounters problem shell return 's '1' . How to differentiate between them the shell return value and script return value. Ex. function fn return '1' if executed successfully and '0' if failed. But when if shell encounters... (1 Reply)
Discussion started by: yhacks
1 Replies

7. Shell Programming and Scripting

exit status for isql

I'm trying to write a script that will update a table in sysbase. If it's failed then I want to rerun it one more time before exiting the script (fail due to bad value such as trying to put a string into datetime field or bad connection to the database) Well my code below will always return... (2 Replies)
Discussion started by: sirrtuan
2 Replies

8. Shell Programming and Scripting

stderr & stdout to a file and the right exit code

Hi all, I need to redirect stdout and stderr to a file in a ksh shell. That's not a problem. But I need also the correct exit code for the executed command. In the example below I redirect correctly the stdout & stderr to a file, but I have the exit code of tee command and not for the mv... (2 Replies)
Discussion started by: up69
2 Replies

9. Shell Programming and Scripting

Checking Exit Status

I hope one of you smart people out there can help me with what seems like a real simple questing but I can't quite figure out. In a script I am doing a cmp on two files. I am trying to check the exit status with an if statement but can't seem to figure out the syntax. If the exit status is 1 I... (4 Replies)
Discussion started by: PrimeRibAndADew
4 Replies

10. Shell Programming and Scripting

exit status

i downloaded a text file from metalab.unc.edu called sh.txt and in this reference manual it refers to shell scripting exit status .. at the end of one of the examples that author gave an exit status of 127.. to what does a 127 exit status refer too and what is its purpose in the code. moxxx68 (1 Reply)
Discussion started by: moxxx68
1 Replies
Login or Register to Ask a Question