Is something like this:
cat \"Some text here.\" > myfile.txt
Possible? Such that the contents of myfile.txt would now be overwr
myfile.txt
simply pipeline echo with cat
For example
echo write something to file.txt | cat > file.txt