Skip to main content

18.输入和输出重定向

什么是输入和输出

我们在使用bash终端时,输入一个命令,bash去执行这个命令其实是这个命令作为输入的参数去执行,我们可以把这个只是单纯想运行的命令 看作是输入,而输入的命令被执行完成后就会产生结果--这就是输出,通常都是直接打印出来。所以bash的输入和输出跟图灵机的概念是一样的 意思。

格式化字串输入

cat << EOF > /tmp/yourfilehere
These contents will be written to the file.
This line is indented.
EOF