bash special characters Flashcards
special characters
user home directory
~
special characters
escape
\
special characters
identifies a var
$
special characters
single character ‘wildcard’
?
special characters
0 to n wildcards
*
special characters
send a process to the background
&
special characters
execute second command only if first is successful
&&
special characters
pipe for sending command output to another command
|
special characters
execute second command only if first is unsuccessful
||
special characters
executes multiple commands on the same line
;
special characters
defines a range of characters (numbers of letters)
[]
special characters
redirect standard output to a file
>
special characters
redirect standard input into a program
<