Unix and Linux Discussions Tagged with run |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
32 |
283,177 |
Shell Programming and Scripting |
|
|
|
2 |
3,733 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
5,056 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
5,587 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
4,058 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
3,203 |
Shell Programming and Scripting |
|
|
|
6 |
2,889 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,497 |
Shell Programming and Scripting |
|
|
|
2 |
5,800 |
UNIX for Beginners Questions & Answers |
|
|
|
10 |
3,635 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,531 |
Shell Programming and Scripting |
|
|
|
5 |
3,758 |
Shell Programming and Scripting |
|
|
|
1 |
5,038 |
Solaris |
|
|
|
14 |
5,144 |
Shell Programming and Scripting |
|
|
|
0 |
4,760 |
Shell Programming and Scripting |
|
|
|
4 |
4,329 |
Shell Programming and Scripting |
|
|
|
4 |
3,944 |
Shell Programming and Scripting |
|
|
|
5 |
3,653 |
Shell Programming and Scripting |
|
|
|
3 |
2,313 |
Shell Programming and Scripting |
|
|
|
5 |
7,043 |
Shell Programming and Scripting |
|
|
|
0 |
3,852 |
Shell Programming and Scripting |
|
|
|
0 |
1,984 |
UNIX and Linux RSS News |
|
|
|
2 |
8,756 |
Shell Programming and Scripting |
|
|
|
4 |
36,560 |
Shell Programming and Scripting |
|
|
|
1 |
4,146 |
Programming |
|
|
|
0 |
1,739 |
Software Releases - RSS News |
|
|
|
3 |
4,843 |
HP-UX |
|
|
|
0 |
1,995 |
Solaris BigAdmin RSS |
|
|
|
13 |
8,354 |
UNIX for Advanced & Expert Users |
|
|
|
12 |
13,093 |
Programming |
|
|
|
2 |
13,054 |
Solaris |
|
|
|
4 |
4,442 |
HP-UX |
|
|
|
0 |
3,155 |
UNIX for Advanced & Expert Users |
|
|
|
15 |
45,521 |
IP Networking |
|
|
|
2 |
6,981 |
Programming |
|
|
|
10 |
6,417 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
5,504 |
Solaris |
|
|
|
1 |
4,443 |
UNIX for Dummies Questions & Answers |
|
|
|
0 |
2,680 |
Security Advisories (RSS) |
|
|
|
2 |
5,726 |
Cybersecurity |
run(1F) FMLI Commands run(1F)
NAME
run - run an executable
SYNOPSIS
run [-s] [-e] [-n] [-t string] program
DESCRIPTION
The run command runs program, using the PATH variable to find it. By default, when program has completed, the user is prompted (Press ENTER
to continue:), before being returned to FMLI. The argument program is a system executable followed by its options (if any).
OPTIONS
The following options are supported:
-e If -e is specified, the user is prompted before returning to FMLI only if there is an error condition
-n If -n is specified, the user is never prompted before returning to FMLI (useful for programs like vi, in which the user must do
some specific action to exit in the first place).
-s The -s option means "silent", implying that the screen does not have to be repainted when program has completed. The -s option
should only be used when program does not write to the terminal. In addition, when -s is used, program cannot be interrupted,
even if it recognizes interrupts.
-tstring If -t is specified, string is the name this process has in the pop-up menu generated by the frm-list command.
EXAMPLES
Example 1 Sample Output of the run Command
Here is a menu that uses run:
menu="Edit special System files"
name="Password file"
action=`run -e vi /etc/passwd`
name="Group file"
action=`run -e vi /etc/group`
name="My .profile"
action=`run -n vi $HOME/.profile`
ATTRIBUTES
See attributes(5) for descriptions of the following attributes:
+-----------------------------+-----------------------------+
| ATTRIBUTE TYPE | ATTRIBUTE VALUE |
+-----------------------------+-----------------------------+
|Availability |SUNWcsu |
+-----------------------------+-----------------------------+
SEE ALSO
attributes(5)
SunOS 5.11 7 Nov 2005 run(1F)