Special Characters Flashcards
(31 cards)
|
pipe
|
pipe
;
causes sequential execution of commands
&
puts a command in the background
( )
delimits group command, sub-shell is created
{ }
delimits group command, in current shell
>
redirect standard output
#
starts a comment
*
matches zero or more characters
?
matches one character
[ ]
matches character set
$
causes parameter value substitution (call a variable)
’
quotes every character except a ‘
\
quotes a single character
”
quotes every character except $ ` \ “
`
turns a commands output into a string
;
causes sequential execution of commands
&
puts a command in the background
( )
delimits group command, sub-shell is created
{ }
delimits group command, in current shell
redirect standard input
>
redirect standard output
#
starts a comment
*
matches zero or more characters