Unix and Linux Discussions Tagged with bash script |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
1 |
5,561 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
67,679 |
Shell Programming and Scripting |
|
|
|
8 |
7,904 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,187 |
UNIX for Beginners Questions & Answers |
|
|
|
7 |
8,334 |
UNIX for Beginners Questions & Answers |
|
|
|
1 |
2,540 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,082 |
Shell Programming and Scripting |
|
|
|
48 |
83,618 |
Shell Programming and Scripting |
|
|
|
6 |
3,694 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
7,296 |
UNIX for Beginners Questions & Answers |
|
|
|
6 |
2,857 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
3,763 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
3,107 |
UNIX for Beginners Questions & Answers |
|
|
|
15 |
6,251 |
Shell Programming and Scripting |
|
|
|
5 |
5,737 |
UNIX for Beginners Questions & Answers |
|
|
|
4 |
20,386 |
Shell Programming and Scripting |
|
|
|
2 |
2,366 |
Programming |
|
|
|
5 |
3,041 |
Shell Programming and Scripting |
|
|
|
4 |
3,399 |
Shell Programming and Scripting |
|
|
|
7 |
4,811 |
Shell Programming and Scripting |
|
|
|
0 |
8,287 |
How to Post in the The UNIX and Linux Forums |
|
|
|
1 |
2,766 |
UNIX for Beginners Questions & Answers |
|
|
|
2 |
2,323 |
Shell Programming and Scripting |
|
|
|
4 |
7,946 |
Programming |
|
|
|
1 |
1,476 |
Shell Programming and Scripting |
|
|
|
2 |
7,036 |
Shell Programming and Scripting |
|
|
|
1 |
4,849 |
Shell Programming and Scripting |
|
|
|
1 |
3,320 |
Shell Programming and Scripting |
|
|
|
5 |
2,361 |
Shell Programming and Scripting |
|
|
|
10 |
5,520 |
Solaris |
|
|
|
2 |
2,954 |
Shell Programming and Scripting |
|
|
|
22 |
5,191 |
Shell Programming and Scripting |
|
|
|
10 |
3,191 |
Shell Programming and Scripting |
|
|
|
4 |
14,115 |
Shell Programming and Scripting |
|
|
|
1 |
5,585 |
UNIX for Dummies Questions & Answers |
|
|
|
4 |
3,513 |
Homework & Coursework Questions |
|
|
|
4 |
15,341 |
Homework & Coursework Questions |
|
|
|
2 |
3,701 |
Shell Programming and Scripting |
|
|
|
32 |
25,773 |
Shell Programming and Scripting |
|
|
|
3 |
2,274 |
Shell Programming and Scripting |
RBASH(1) General Commands Manual RBASH(1)
NAME
rbash - restricted bash, see bash(1)
RESTRICTED SHELL
If bash is started with the name rbash, or the -r option is supplied at invocation, the shell becomes restricted. A restricted shell is
used to set up an environment more controlled than the standard shell. It behaves identically to bash with the exception that the follow-
ing are disallowed or not performed:
o changing directories with cd
o setting or unsetting the values of SHELL, PATH, ENV, or BASH_ENV
o specifying command names containing /
o specifying a file name containing a / as an argument to the . builtin command
o specifying a filename containing a slash as an argument to the -p option to the hash builtin command
o importing function definitions from the shell environment at startup
o parsing the value of SHELLOPTS from the shell environment at startup
o redirecting output using the >, >|, <>, >&, &>, and >> redirection operators
o using the exec builtin command to replace the shell with another command
o adding or deleting builtin commands with the -f and -d options to the enable builtin command
o using the enable builtin command to enable disabled shell builtins
o specifying the -p option to the command builtin command
o turning off restricted mode with set +r or set +o restricted.
These restrictions are enforced after any startup files are read.
When a command that is found to be a shell script is executed, rbash turns off any restrictions in the shell spawned to execute the script.
SEE ALSO
bash(1)
GNU Bash-4.0 2004 Apr 20 RBASH(1)