知识屋:更实用的电脑技术知识网站
所在位置:首页 > 操作系统 > linux

LINUXSHELLHereDocuments

发布时间:2014-09-05 13:28:37作者:知识屋

今天学到一个Linux Bash的新词语,Here docuemnts。

Frequently, your script might call on another program or script that requires input. The here document provides a way of instructing the shell to read input from the current source until a line containing only the search string is found (no trailing blanks). All of the lines read up to that point are then used as the standard input for a command.

简答的说,就是直接将需要的文件内容写到Bash一起。
echo "These are the web browsers on this system:" # Start here documentcat << BROWSERSmozillalinkslynxkonqueroroperanetscapeBROWSERS# End here document 

从上面可以看出,以BROWSERS开始,到BROWSERS结束为一个文档。

(免责声明:文章内容如涉及作品内容、版权和其它问题,请及时与我们联系,我们将在第一时间删除内容,文章内容仅供参考)
收藏
  • 人气文章
  • 最新文章
  • 下载排行榜
  • 热门排行榜