Unix and Linux Discussions Tagged with exit |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
9,963 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
21,411 |
Shell Programming and Scripting |
|
|
|
3 |
2,469 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
17,330 |
Homework & Coursework Questions |
|
|
|
3 |
8,723 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
4,401 |
Shell Programming and Scripting |
|
|
|
2 |
2,980 |
Shell Programming and Scripting |
|
|
|
17 |
16,193 |
Shell Programming and Scripting |
|
|
|
12 |
9,450 |
Shell Programming and Scripting |
|
|
|
2 |
1,132 |
Shell Programming and Scripting |
|
|
|
5 |
8,102 |
Homework & Coursework Questions |
|
|
|
8 |
5,941 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
3,222 |
Shell Programming and Scripting |
|
|
|
3 |
24,124 |
Shell Programming and Scripting |
|
|
|
4 |
5,613 |
Shell Programming and Scripting |
|
|
|
2 |
3,455 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
6,855 |
Solaris |
|
|
|
1 |
2,555 |
Shell Programming and Scripting |
|
|
|
7 |
4,389 |
Shell Programming and Scripting |
|
|
|
3 |
2,581 |
Shell Programming and Scripting |
|
|
|
3 |
20,662 |
Shell Programming and Scripting |
|
|
|
7 |
22,971 |
Shell Programming and Scripting |
|
|
|
7 |
27,698 |
Shell Programming and Scripting |
|
|
|
9 |
33,665 |
Programming |
|
|
|
2 |
10,086 |
Shell Programming and Scripting |
|
|
|
1 |
3,738 |
Programming |
|
|
|
2 |
2,795 |
Shell Programming and Scripting |
|
|
|
1 |
10,385 |
Shell Programming and Scripting |
|
|
|
3 |
7,454 |
Shell Programming and Scripting |
|
|
|
1 |
3,437 |
Shell Programming and Scripting |
|
|
|
3 |
14,387 |
Programming |
|
|
|
1 |
3,570 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
4,772 |
Shell Programming and Scripting |
|
|
|
0 |
4,808 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,419 |
Shell Programming and Scripting |
|
|
|
2 |
2,245 |
Shell Programming and Scripting |
|
|
|
4 |
8,975 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,581 |
Solaris BigAdmin RSS |
|
|
|
5 |
4,510 |
Programming |
|
|
|
9 |
11,425 |
Shell Programming and Scripting |
exit(1T) Tcl Built-In Commands exit(1T)
__________________________________________________________________________________________________________________________________________________
NAME
exit - End the application
SYNOPSIS
exit ?returnCode?
_________________________________________________________________
DESCRIPTION
Terminate the process, returning returnCode to the system as the exit status. If returnCode isn't specified then it defaults to 0.
EXAMPLE
Since non-zero exit codes are usually interpreted as error cases by the calling process, the exit command is an important part of sig-
nalling that something fatal has gone wrong. This code fragment is useful in scripts to act as a general problem trap:
proc main {} {
# ... put the real main code in here ...
}
if {[catch {main} msg]} {
puts stderr "unexpected script error: $msg"
if {[info exist env(DEBUG)]} {
puts stderr "---- BEGIN TRACE ----"
puts stderr $errorInfo
puts stderr "---- END TRACE ----"
}
# Reserve code 1 for "expected" error exits...
exit 2
}
SEE ALSO
exec(1T), tclvars(1T)
KEYWORDS
exit, process
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+--------------------+-----------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+--------------------+-----------------+
|Availability | SUNWTcl |
+--------------------+-----------------+
|Interface Stability | Uncommitted |
+--------------------+-----------------+
NOTES
Source for Tcl is available on http://opensolaris.org.
Tcl exit(1T)