Unix and Linux Discussions Tagged with exit |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
5,368 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
9,812 |
Shell Programming and Scripting |
|
|
|
3 |
1,201 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
11,729 |
Homework & Coursework Questions |
|
|
|
3 |
5,747 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,486 |
Shell Programming and Scripting |
|
|
|
2 |
1,767 |
Shell Programming and Scripting |
|
|
|
17 |
12,479 |
Shell Programming and Scripting |
|
|
|
12 |
7,024 |
Shell Programming and Scripting |
|
|
|
2 |
784 |
Shell Programming and Scripting |
|
|
|
5 |
6,164 |
Homework & Coursework Questions |
|
|
|
8 |
4,577 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
2,542 |
Shell Programming and Scripting |
|
|
|
3 |
22,339 |
Shell Programming and Scripting |
|
|
|
4 |
4,657 |
Shell Programming and Scripting |
|
|
|
2 |
2,700 |
UNIX for Advanced & Expert Users |
|
|
|
6 |
5,735 |
Solaris |
|
|
|
1 |
1,678 |
Shell Programming and Scripting |
|
|
|
7 |
2,784 |
Shell Programming and Scripting |
|
|
|
3 |
1,908 |
Shell Programming and Scripting |
|
|
|
3 |
19,256 |
Shell Programming and Scripting |
|
|
|
7 |
22,018 |
Shell Programming and Scripting |
|
|
|
7 |
23,473 |
Shell Programming and Scripting |
|
|
|
9 |
29,785 |
Programming |
|
|
|
2 |
9,399 |
Shell Programming and Scripting |
|
|
|
1 |
3,253 |
Programming |
|
|
|
2 |
2,375 |
Shell Programming and Scripting |
|
|
|
1 |
8,669 |
Shell Programming and Scripting |
|
|
|
3 |
6,734 |
Shell Programming and Scripting |
|
|
|
1 |
3,055 |
Shell Programming and Scripting |
|
|
|
3 |
11,594 |
Programming |
|
|
|
1 |
2,898 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
3,831 |
Shell Programming and Scripting |
|
|
|
0 |
4,068 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
3,714 |
Shell Programming and Scripting |
|
|
|
2 |
1,862 |
Shell Programming and Scripting |
|
|
|
4 |
8,241 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,246 |
Solaris BigAdmin RSS |
|
|
|
5 |
3,623 |
Programming |
|
|
|
9 |
9,564 |
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)