Tagged Questions
0
votes
1answer
65 views
exit command does not work properly in my own shell
I wrote a shell for an assignment and it works correctly, but there is a small run time error which i can not figure out. When the user enter the command 'exit' through the shell it should come out ...
1
vote
1answer
225 views
Check exit status of two parallel running background command in shell script
suppose I am running two commands in parallel in shell script, example below
/cmd1 &
pid1=$!
/cmd2 &
pid2=$!
status1= # what should go here?
status2=$? # I know this will have ...
1
vote
3answers
1k views
Shell script: Execute command after running “exit” command in the shell script
I have a situation where in I have a command in my shell script that must be executed after a exit command is executed in the same script (I know!! It sounds crazy!!)
I want to find a solution for ...
0
votes
1answer
138 views
How to run a script at Cygwin shell exit?
In Cygwin, my .bash_profile looks like this:
nohup mintty &
exit
The mintty command fires up and processes all of my real startup stuff with .bashrc. What I'd like to do is have all ssh-agent ...
0
votes
4answers
821 views
exit function stack without exiting shell
I was writing a script and then came across a odd problem. If I'd source a script that contains a bunch of functions that may call an error function which outputs a string and then exits, it will ...
1
vote
1answer
327 views
bash prompt - exit meaning
I am a beginner to bash and in general using shell. When I open a terminal, it comes up with a prompt like this:
myusername@dev94:~>
where myusername is in blue, dev94 is in red and > is in ...
0
votes
2answers
1k views
How to exit APK from shell
I know how to start an APK from the shell using this command:
adb shell am start -a android.intent.action.MAIN -n package name/activity name
Is there a way to quit the apk using shell commands? ...
0
votes
2answers
183 views
How can I script a 'shutdown -r 1' and return an exit status?
I am writing a program that will at some point call a shell script. I need this shell script (bash, or if necessary PHP 4+ will work) to be called by the program, and return an exit status that I can ...
1
vote
1answer
1k views
Returning an exit code from a shell script that was called from inside a perl script
I have a perl script (verifyCopy.pl) that uses system() to call a shell script (intercp.sh).
From inside the shell script, I have set up several exit's with specific exit codes and I'd like to be ...
2
votes
1answer
1k views
Shell Script Exit Code - Unable to set
I am running following test bash script:
test.sh
========
pass=$1
if [ $pass -eq 1 ]; then
exit 0
else
exit 1
fi
=============
So, If I run './test.sh 1', it should give me success code, ...
0
votes
2answers
199 views
can anyone show me a very simple example of unix script loop
I just need an example of script that repeat all the same actions in a loop til we ask to stop it. Say I want the user to type y or n for exit, how would i implement it. I have something like
echo ...
4
votes
4answers
4k views
Exit a Script On Error
I'm building a Shell Script that has a if function like this one:
if jarsigner -verbose -keystore $keyst -keystore $pass $jar_file $kalias
then
echo $jar_file signed sucessfully
else
echo ...
3
votes
3answers
2k views
SSH doesnt exit from command line
I ssh to another server and run a shell script like this nohup ./script.sh 1>/dev/null 2>&1 &
Then type exit to exit from the server. However it just hangs. The server is Solaris.
How ...
31
votes
4answers
8k views
Automatic exit from bash shell script on error
I've been writing some shell script and I would find it useful if there was the ability to halt the execution of said shell script if any of the commands failed. See below for an example:
#!/bin/bash ...
0
votes
1answer
475 views
exiting script while running source scriptname over SSH
I have a script with a number of options in it one of the option sets is supposed to change the directory and then exit the script however running over ssh with the source to get it to change in the ...
3
votes
4answers
748 views
Bourne Shell exit will not work
I have the following script
cat $1 | while read line
do
line=`echo $line | tr "[:lower:]" "[:upper:]"`
if [ "`echo $line | cut -f1 -d:`" = "foo" ] && \
[ "`echo $line | cut ...