/ Published in: Windows PowerShell
echo "hello" >> tmp.txt will append the text "hello" to tmp.txt echo "world" > tmp.txt will overwrite the existing tmp.txt 's content, and after this it will only contain "world"
Expand |
Embed | Plain Text
echo "hello" >> tmp.txt echo "world" > tmp.txt
You need to login to post a comment.
