使用cat命令输出大段字符

Shell中EOF说明: 

Shell中通常将EOF与 << 结合使用,表示后续的输入作为子命令或子Shell的输入,直到遇到EOF为止,再返回到主调Shell。
可以把EOF替换成其他东西,意思是把内容当作标准输入传给程序。

回顾一下<<的用法。当shell看到<<的时候,它就会知道下一个词是一个分界符。在该分界符以后的内容都被当作输入,直到shell又看到该分界符(位于单独的一行)。这个分界符可以是你所定义的任何字符串。

 

cat命令:

       Concatenate FILE(s), or standard input, to standard output.

//将文件或者标准输入,输出到标准输出

 

示例脚本如下:

root@localhost ~]# cat test3.sh 
#!/bin/bash
dir="/root"
if [ -d $dir ];then
cat<<EOF
this is a test.
directory $dir exists.
this is the third line.
EOF
fi
[root@localhost ~]# 
[root@localhost ~]# ./test3.sh 
this is a test.
directory /root exists.
this is the third line.

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值