When using echo "foo">> bar.txt more than once it appends to the end of a file. How to overwrite bar.txt each time?
Asked
Active
Viewed 8.9k times
1 Answers
50
> is for redirecting to a file (overwriting it), while >> is for appending.
To overwrite bar.txt, use this:
echo "foo" > bar.txt
Dennis
- 50,701