Can linux cat command be used for writing text to file?

后端 未结 12 1233
南方客
南方客 2021-01-29 19:03

Is something like this:

cat \"Some text here.\" > myfile.txt

Possible? Such that the contents of myfile.txt would now be overwr

12条回答
  •  灰色年华
    2021-01-29 20:05

    Sounds like you're looking for a Here document

    cat > outfile.txt <some text
    >to save
    >EOF
    

提交回复
热议问题