Welcome toVigges Developer Community-Open, Learning,Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.2k views
in Technique[技术] by (71.8m points)

bash - how to insert ctrl+d into my linux script?

I want to make the following commands:

cat > template.txt [enter in the terminal] text [Ctrl+d in the terminal]

in a script.

Is there a way to tell the script to do enterCtrl d? Is there a way to create a file and write to it in script?

I didn't find anything that worked for me.

Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

A Here Document is kind of like a script version of what you're talking about, I think, although it is not entirely clear to me from your description.

#!/bin/bash

cat > template.txt <<- EOF
    Here
    is some 
    text.
EOF

Ctrl-D itself is the EOF character, ASCII 4.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to Vigges Developer Community for programmer and developer-Open, Learning and Share
...