作者:iamlaosong
我们常常在shell脚本程序中用<<EOF重定向输入。将我们输入的命令字符串作为一个运行程序的输入,这样,我们就不须要在那个程序环境中手工输入命令,以便自己主动运行我们须要的功能,比如:
sqlplus emssxjk/emssxjk <<EOF select count(*) from sncn_yxyj where create_date like sysdate; EOF
sqlplus emssxjk/emssxjk <<STD select count(*) from sncn_yxyj where create_date like sysdate; STD
当然这个标志性字符不能用保留字,最经常使用的还是EOF。
须要注意的是。第一个EOF必须以重定向字符<<開始。第二个EOF必须顶格写,否则会报错。
再看一个自己主动FTP的样例:
#ftp data to 10.178.37.244 rq=`date +%Y%m%d` cd /data/product/song ftp -i -n <<! open 10.178.37.244 user oracle post cd ems bin put ${rq}.dat bye !