Unix and Linux Discussions Tagged with bash shell |
|
Thread / Thread Starter |
Last Post |
Replies |
Views |
Forum |
|
|
|
3 |
2,904 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
12,179 |
UNIX for Beginners Questions & Answers |
|
|
|
5 |
7,439 |
Fedora |
|
|
|
7 |
2,174 |
UNIX for Beginners Questions & Answers |
|
|
|
3 |
2,314 |
Shell Programming and Scripting |
|
|
|
8 |
3,857 |
Shell Programming and Scripting |
|
|
|
7 |
4,802 |
Shell Programming and Scripting |
|
|
|
1 |
9,825 |
Shell Programming and Scripting |
|
|
|
5 |
5,970 |
Shell Programming and Scripting |
|
|
|
4 |
5,752 |
Shell Programming and Scripting |
|
|
|
9 |
9,669 |
Shell Programming and Scripting |
|
|
|
3 |
3,000 |
Shell Programming and Scripting |
|
|
|
1 |
5,180 |
Shell Programming and Scripting |
|
|
|
2 |
14,667 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
7,359 |
Homework & Coursework Questions |
|
|
|
3 |
6,990 |
Shell Programming and Scripting |
|
|
|
10 |
4,515 |
Shell Programming and Scripting |
|
|
|
4 |
3,629 |
Shell Programming and Scripting |
|
|
|
3 |
7,289 |
Red Hat |
|
|
|
4 |
5,783 |
Shell Programming and Scripting |
|
|
|
2 |
35,849 |
Shell Programming and Scripting |
|
|
|
2 |
4,823 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
15,132 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
32,348 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
5,960 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
6,163 |
UNIX for Dummies Questions & Answers |
|
|
|
2 |
168,427 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
2,932 |
UNIX for Dummies Questions & Answers |
|
|
|
3 |
7,110 |
UNIX for Dummies Questions & Answers |
|
|
|
5 |
3,070 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,396 |
UNIX for Dummies Questions & Answers |
|
|
|
1 |
4,195 |
UNIX for Dummies Questions & Answers |
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)