Builtin Commands
.
:
[
alias
bg
bind
break
builtin
cd
command
continue
declare
dirs
disown
echo
enable
eval
exec
exit
export
fc
fg
getopts
hash
help
history
jobs
kill
let
local
logout
mapfile
popd
printf
pushd
pwd
read
readarray
readonly
return
set
shift
shopt
source
suspend
test
times
trap
type
typeset
ulimit
umask
unalias
unset
wait
SPECIAL builtin commands
Cannot be invoked with nice
.
. : break continue eval exec exit export readonly return set shift times trap unset history suspend
Reserved Words
!
case esac
[[ ]]
if then elif else fi
while
for do done
{ }
in
until
select
time
function
Installing Bash
DGG made this nice stuff from, what is now, and old version of the docs.
The truth is out there
gnu.org/software/bash/manual/bashref.html
> bash --help # as of 7/28/16
GNU bash, version 4.1.2(1)-release-(x86_64-redhat-linux-gnu)
Usage: bash [GNU long option] [option] ...
bash [GNU long option] [option] script-file ...
GNU long options:
--debug --debugger
--dump-po-strings --dump-strings
--help
--init-file --login --noediting --noprofile --norc --rcfile
--posix --restricted --protected --rpm-requires
--verbose
--version
Shell options:
-irsD or -c command or -O shopt_option (invocation only)
-abefhkmnptuvxBCHP or -o option
Type `bash -c "help set"' for more information about shell options.
Type `bash -c help' for more information about shell builtin commands.
(The following are rearranged, i.e. not exactly as displayed.)
> sh -c "help set"
set: set [--abefhkmnptuvxBCHP] [-o option] [arg ...]
-o option-name
Set the variable corresponding to option-name:
variable | flag
| allexport -a | Mark variables which are modified or created for export.
| braceexpand -B the shell will perform brace expansion
| errexit -e Exit immediately if a command exits with a non-zero status.
| errtrace -E ERR trap is inherited by shell functions.
| functrace -T If set, the DEBUG trap is inherited by shell functions.
| hashall -h Remember the location of commands (i.e. save them in a cache like structure)
| history | enable command history
| histexpand -H Enable !nth style history substitution. Default on when shell is interactive.
Retrieve the -nth command or first argument(!^ ) or last argument(!$ ) or all arguments (!* ).
Format !n:w .
geek.nz has more info.
| ignoreeof | the shell will not exit upon reading EOF
| keyword -k All assignment arguments are placed in the environment for a command,
not just those that precede the command name.
| noclobber -C disallow existing regular files to be overwritten by redirection of output.
| noglob -f Disable file name generation (globbing).
| monitor -m Job control is enabled.
| notify -b Notify of job termination immediately.
| nounset -u Treat unset variables as an error when substituting.
| onecmd -t Exit after reading and executing one command.
| physical -P do not follow symbolic links when executing commands such as
cd which change the current directory.
| pipefail | the return value of a pipeline is the status of
the last command to exit with a non-zero status,
or zero if no command exited with a non-zero status
| privilege -p Turned on whenever the real and effective user ids do not match.
Disables processing of the $ENV file and importing of shell functions.
Turning this option off causes the effective uid and gid to be set to
the real uid and gid.
| vi | use a vi-style line editing
| emacs | use an emacs-style line editing
| noexec -n Read commands but do not execute them.
| verbose -v display shell input lines as they are read.
| xtrace -x display commands and arguments as they are executed.
| posix | operate as 1003.2 standard
| interactive- comments | allow comments to appear in interactive commands
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | |
|
- Assign any remaining arguments to the positional parameters.
The -x
and -v
are turned off.
Using + causes flags to be turned off.
The flags can be used at invocation of the shell,
current set of flags may be found in $-
. echo $- himBH
(hashall, jobcontrol, Braceexpand, HistExpand )
The remaining n ARGs are positional parameters and are assigned, in order, to
$1, $2, … $n
.
If no ARGs are given, all variables are output.
Versions
Mac OS has an older version of bash 3.2.57.(1). It will not include newer versions,
as well as several other commands (including: sed
)
becuse they have a GPL V3 license that explicitly restricts commercial Unix vendors from including them.
Where there is an open source command you are allowed to install it (in an unprotected directory, safe from Mac OS upgrades).
Package managers that can add them include: Homebrew, MacPorts, Fink.
Various distrbutions:
cygwin 2.05b.0(8)-release
@Real-World-Systems.com : BASH_VERSION=GNU bash, version 4.1.2(1)-release (x86_64-redhat-linux-gnu)
> ls -l /bin/sh
lrwxrwxrwx 1 root root 4 Nov 20 2014 /bin/sh -> bash
Changes of note:
⌘ :
Sub versions up to -53 exist( these do not change functionally but correct bugs
-53