Append Standard Output to a File

$ echo "FISH"
FISH
$ echo "FISH" > net.txt
$ cat net.txt
FISH
$ echo "CRAB" > net.txt
$ cat net.txt
CRAB
$ echo "BARNACLE" >> net.txt
$ cat net.txt
CRAB
BARNACLE
$ 
search Search · star Market
2023-06-01 · John December · Terms © johndecember.com