本文主要是介绍linux 中here documents 的写法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
linux中关于here documents的写法,是关于cat的用法:
#!/bin/sh
# we have less than 3 arguments. Print the help tesxt:
if [ $# -lt 3 ]; then
cat << HELP
ren -- renames a number of files using sed regular expressions
USAGE:
ren 'regexp' 'replacement' files...
EXAMPLE:
rename all *.HTM files in *.html:
ren 'HTM$' 'html' *.HTM
HELP
exit 0
fi
用 cat 命令,以<<开始,后面接HELP单词,然后以HELP结束,中间的内容就是可以显示的内容。
$ ./ren
ren -- renames a number of files using sed regular expressions
USAGE:
ren 'regexp' 'replacement' files...
EXAMPLE:
rename all *.HTM files in *.html:
ren 'HTM$' 'html' *.HTM
$
这篇关于linux 中here documents 的写法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!