Menu Close

How to append text to an existing file in Linux or Mac OS?

techwetrust post image

If you want to add a new line to an existing file from the terminal, use the following format: echo 'hello world' >> file.txt
Double greater-than sign >> will append text to the desired file.

Example

echo "example paragraph" > test.txt

example paragraph

echo "another paragraph" >> test.txt

example paragraph

another paragraph

Spread the love

Leave a Reply