Exiting, or quitting, refers to the termination of a process or program.
3
votes
2answers
195 views
Bash: One-liner to exit with the opposite status of a grep command?
How can I reduce the following bash script?
grep -P "STATUS: (?!Perfect)" recess.txt && exit 1
exit 0
It seems like I should be able to do it with a single command, but I have a total of 3 ...
3
votes
6answers
312 views
C: explain if(exit(0),0){} line of code
I am learning C and as an exercise, I'm trying to write a simple program without any semicolons. I've had some trouble with replacing return 0 statement but I've found that this is (the only?) way to ...
0
votes
0answers
169 views
Add two exit buttons! FLASH as3
I know this may sound easy but i cant seem to figure out how to have two exit buttons.
one at the front menu and one at the end menu. my front menu works however i cant seem to make the end one work.
...
4
votes
4answers
75 views
Is there a way to execute a command on exit (regardless of how the script exited)?
I have a script that writes out to temporary files to aid in its execution. At the end of my script I simply call rm filename to clean up the temp files I created. The problem is when the script ends ...
0
votes
3answers
117 views
android application not closing
I am in trouble, I want to start my application from starting every time but its not being.
1.When i exit from my application & come again .I found same activity which i have left before exit.
...
2
votes
2answers
121 views
Exiting pygame window on click
Making my first post here (or frankly any forum), but I was wondering why I can't exit on when the window's exit button [x] has been pressed. I have tried:
#print "Exit value ", pygame.QUIT
for et in ...
1
vote
3answers
65 views
how to stop the current execution of a system call in python
From python I am calling a java function:
os.system("java -jar example.jar run myFunction 'inFile.txt' 'outFile.txt' " )
This function is processing a file and the output is written into ...
0
votes
1answer
95 views
Exit button in iPhone Application?
https://itunes.apple.com/us/app/ccnv/id574345063?mt=8
I download this app from Apple app store.
This ...
2
votes
2answers
103 views
How to avoid “exit” in user defined library programs for my container server in C?
I'm writing a container server for library in C.
The system library dl, as dynamic linking loader, is used to implement the programming interface. That is dlopen/dlsym function.
To return control to ...
1
vote
2answers
144 views
Websphere MQ v7 - Security exits in Java?
According to the Online IBM doc for WMQ 7 it's possible to write channel security exits in the Java language, so I don't need to remember C programming and no worry about compiling for different ...
2
votes
1answer
457 views
Get exit code from a java application in batch file
I'm currently making an effort to create test cases for one of our java applications.
In my code, my java application calls a batch file, which in turn starts a separate java process, that returns an ...
-4
votes
3answers
66 views
quit from iphone app? [closed]
i have created quit button in iPhone application.and now want when user tap on quit button.the application should enter in background.please provide some suitable solution for this so that i can ...
0
votes
1answer
95 views
How to define the Node.js status code without exiting immediately?
In Node, the process.exit(code) method allows one to exit with the code status code.
However, what I am looking for is a way to define, under some condition that are not temporally defined, the ...
0
votes
3answers
219 views
Wait for process to end async and then call a function within the main form
I'm coding an editor for a game with C#. My programm openes as .txt File by starting a notepad.exe process. If that process exits, I want to call a function within the main form (to update the ...
0
votes
1answer
169 views
How to close a GUI on JButton click [closed]
I have written some coding that has a GUI that has an enter button that, when clicked, opens the tool that I have created, but what I also want the jbutton to do is to close the first GUI down as well ...
-1
votes
1answer
81 views
How do i kill a CMD process?
This is a simple code line i've made for my application. Basically Button_2 runs the "batchfile.bat." Now, i'm curious how to make Button_1 end the "batchfile.bat" or close CMD because thats what the ...
2
votes
1answer
249 views
exit(3) hangs in Linux C++
I have a small C++ program that pings other machines on a network and send status information out over another network. The program runs as a daemon, so the startup process forks off a child and then ...
0
votes
1answer
65 views
files created by PHP deleted on exit
I am writing some files in the filesystem, but unfortunately these files are deleted at the exit of the PHP script.
I have tried to create the files both with fopen (w+) and file_put_contents. Files ...
0
votes
2answers
111 views
exiting from php command without triggering shutdown functions
how can I exit from a php script (for example with the exit() function) but without triggering all previously registered shutdown functions (with register_shutdown_function)?
Thanks!
EDIT: ...
0
votes
1answer
36 views
my android button is not working
i have 2 activity and 2 file .xml, in nameActivity have buttonCancel and buttonNewUser, in SignUpActivity have buttonBack, when i'm click buttonNewUser it's execute SignUpActivity, when i'm click ...
0
votes
3answers
105 views
PHP Memory Cleared when using exit()?
My web app makes a lot of POST and GET calls via AJAX to my PHP scripts. I've noticed my server's memory usage is reaching a pretty low level after calling my scripts when exporting to PDF/excel, ...
0
votes
2answers
50 views
Hiding Files on Close
Hey i want to be able to hide a file when i press the [X] button on my window in a batch file. For example.
@echo off
cd C:\documents and settings\%USERNAME%\desktop
ping localhost -n 5 >nul
If ...
1
vote
2answers
70 views
Detect when app finishes loading after opening from background
When my app is first opened there is a long loading time so I can display a loading screen. When the user exits the app by clicking the home button then re-opens it (the viewDidLoad / viewDidAppear ...
1
vote
1answer
136 views
Bash Script exiting without error while using diff
I'm fairly new to using bash and was trying to create an autograder script for running some test cases. Currently my bash script seems to be acting strangely; when I have the -e flag set bash will ...
9
votes
3answers
175 views
How to exit from find -exec if it fails on one of the files
I want to run the command
find some/path -exec program \{} \;
but I want the find command to quit as soon as the command
program \{}
fails on any of the files found.
Is there a simple way ...
0
votes
0answers
102 views
Shut down C# dll in AutoCAD
I have written a C# plugin for AutoCAD, which is just a dll with some forms and user inputs and so on.
Is it possible to close only the dll?
I tried:
Application.Exit();
but this does close the ...
-3
votes
2answers
117 views
Does exit(0) not terminate the ENTIRE program in PHP? [closed]
I have the code:
<?php
startProcess();
function startProcess(){
$matches = array();
$file = file("log.txt");
$file = array_reverse($file,FILE_IGNORE_NEW_LINES);
foreach($file as $f){
$f = ...
0
votes
2answers
118 views
how to make another activity behave like home activity(first app launching actvity)
I have 4 activities in my application. I want back button to work normally on first three activities(i.e. going to previous screen on back button press); except the last.
I want that, when I press ...
1
vote
3answers
266 views
C programming return 0 does not terminate the program [closed]
I wrote this shell for my operating systems course, and for some reason my main function doesn't terminate when I type "exit", its supposed to break from the while loop and then return 0 to main, ...
0
votes
1answer
67 views
How to make an input on the keyboard shut down a batch program
How can I make a certain input on a keyboard shut down a batch program? I am a batch newbie and I'm having trouble exiting this program.
My program is made to start up a few other programs on the ...
-3
votes
1answer
82 views
Program not exiting
When my program gets to the return 0 in main the program exits, but control does not return to the command line. I have even tried exit(), to no avail. Any suggestions
int main (int argc, char* ...
0
votes
1answer
173 views
closing all the activities, services, threads. etc when exiting an Android app
I am writing an android app that when I run it first time it works fine, but when I try to run it a second time it become shaky. I think maybe a thread or a service that I have started first time ...
1
vote
2answers
77 views
Perl How to exit from child script which does a telnet?
I have a script which executes few commands and then telnets to machine. Now I need to call this script from another perl script.
$result = `some_script.pl`;
The script some_script.pl executes ...
0
votes
0answers
104 views
How i exit from main activity?
I create an application with two activities, in
first activity setup the bluetooth device name, admin number and
in second activity apk wait for call.
I have broadcast receiver for detect ...
0
votes
1answer
617 views
How to close a powershell gui windows form after the button is clicked?
i have a script which created a small windows gui form with buttons depending on the scenarios;
-> on clicking, these buttons open respective files on remote file shares;following is the code;
...
3
votes
3answers
84 views
Close the application before the form loads
I have a program wherein I will check if a file exists. If it does, the form will load. But if not, a messagebox will appear to inform the user, and then the application needs to close without showing ...
1
vote
1answer
157 views
Trouble adding and removing elements in d3
My goal is to remove a data point from my bar chart.
It will then update itself:
Update X and Y axis
Update the actual bar chart
Update the legend
Issues I am having:
When I exit().remove() the ...
1
vote
1answer
258 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 ...
0
votes
3answers
447 views
Android Activity Finish
I am try to add theme change option in my application.I have a main activity called timeline.And from there user can go to themechange activity can change theme.It changes the theme of the themechange ...
0
votes
1answer
78 views
Get exit code for eval command in sh
I'm trying to create a function in a shell script that takes a command and executes it using eval, and then does some post-processing based on the success of the command. Unfortunately the code is not ...
0
votes
2answers
2k views
exit application when click button - iOS [duplicate]
Possible Duplicate:
Exit application in iOS 4.0
I have a AlertView which displays some text and a "OK" button.
if user press ok button then app need to exit.
Is there any way to exit ...
0
votes
2answers
60 views
How to identify an unknown exit code?
I have the problem that a Mac application I wrote often suddenly exits with a for me unknown exit code 33 and without any further indication of what went wrong. I already searched the whole source ...
0
votes
2answers
124 views
absolutely no response php exit technique?
The docs I read don't seem clear on this issue.
When calling exit() with no arguments, does the server still send something back to the client?
If so, is there an alternative or way to keep anything ...
0
votes
1answer
277 views
exit button .swf file
I've been into forums and other sites that have answered this question. They've given this code:
on(release) {
fscommand("quit");
}
but it doesn't work for me. Can anyone help me?
1
vote
1answer
42 views
Is it possible to exit a Freemarker template?
I'd like to be able to end the page's rendering from within an <#if> tag.
I'm aware of the <#stop> tag, but I'd prefer not to have to throw an exception in order for the page to stop rendering.
...
2
votes
3answers
125 views
Closing an application after displaying a message
I have the following code...
MessageBox.Show("Your session has been remotely terminated.");
Application.ExitThread;
I am trying to figure out if there is a way to close the MessageBox automatically ...
1
vote
1answer
132 views
Behavior of C++ const static after program termination
I have a program which creates a thread (I am using C++ Boost library for creating threads) when started. In the main program I have registered my cleanup function as.
atexit(cleanExit)
// Trap ...
1
vote
2answers
137 views
Is there a JavaScript function like PHP‘s exit()?
I need to stop my script .I don't want to write more code like "if(...) return
false" because I will use it many times.
My English is poor.It's my first question on this site. :)
0
votes
1answer
90 views
How to terminate applet gracefully?
My applet is supposed to take external parameters from html file which might be dynamically generated.
<param name="type1" value="value1">
<param name="type2" value="value2">
Those ...
1
vote
4answers
132 views
Will exit(0) be bad in an othewise “empty” block?
I've tried to read up on the difference between return EXIT_SUCCESS; from main() and calling exit(EXIT_SUCCESS) from anywhere, and the best resource I've found so far is this answer here on SO. ...





