I've seen somewhere that we can use >> in shell. What's the difference between using > and >> in shell?
|
|
|
|
|||||||||||||||
|
|
There is a difference if the file you're redirecting to already exists:
|
|||
|
|
|
If the file exists, Both will create it otherwise. |
|||
|
|
|
'>>' will let you append data to a file, where '>' will overwrite it. For example:
|
|||
|
|
|
When you use >, as in:
The > operator will completely overwrite any contents of the file output.txt if it exists. If the file does not exist, it will be created with the contents "this is a test." This usage:
Will add the link "this is a test" to any content in output.txt (called 'appending'). If the file does not exist, it will be created, and the text will be added. |
|||
|
|
|
|||||
|