Page 1 of 1

What is the difference between > and >> in the shell environment? Group of answer choices: > is used to compare numeric

Posted: Sun May 15, 2022 10:22 am
by answerhappygod
What is the difference
between > and >> in
the shell environment?
Group of answer choices:
> is used to compare numeric values, whereas >> is used
to concatenate strings.
> redirects output to a location, appending the content to
any previous content at that location. >> redirects output to
a location, overwriting any previous contents.
> redirects output to a location, overwriting any previous
contents. >> redirects output to a location, appending the
content to any previous content at that location.
> redirects input to a command, whereas >> redirects
input to a file.