Document noclobber redirections

Fixes #2812.
This commit is contained in:
Fabian Homborg 2016-05-23 11:29:06 +02:00
parent 49d9883b3e
commit dc470bcad3

View file

@ -146,6 +146,8 @@ An example of a file redirection is `echo hello > output.txt`, which directs the
- To append standard output to a file, write `>>DESTINATION_FILE` - To append standard output to a file, write `>>DESTINATION_FILE`
- To append standard error to a file, write `^^DESTINATION_FILE` - To append standard error to a file, write `^^DESTINATION_FILE`
- To not overwrite ("clobber") an existing file, write '>?DESTINATION' or '^?DESTINATION'
`DESTINATION` can be one of the following: `DESTINATION` can be one of the following:
- A filename. The output will be written to the specified file. - A filename. The output will be written to the specified file.