Does " - " mean stdout in bash? -
Does " - " mean stdout in bash? -
is " - " shortcut stdout in bash? if not mean? example,
wget -q -o - $line
how stdin?
thanks , regards!
as far know, bash
isn't involved usage of dash. it's convention of many unix command line utilities take -
placeholder stdin
or stdout
when set in place of input or output file name on command line. edit: found it, behavior specified in posix utility syntax guidelines, §12.2.13 of the open grouping base of operations specifications:
bash
Comments
Post a Comment