玩转Linux文件描述符和重定向(3)
代码如下: #!/bin/bash cat EOFlog.txt LOG FILE HEADER This is a test log file Function:System statistics EOF 在cat EOFlog.txt与下一个EOF行之间的所有文本行都会被当做stdin数据。
代码如下:
#!/bin/bash
cat <<EOF>log.txt
LOG FILE HEADER
This is a test log file
Function:System statistics
EOF
在cat <<EOF>log.txt与下一个EOF行之间的所有文本行都会被当做stdin数据。log.txt文件的内容打印如下:
代码如下:
$ cat log.txt
LOG FILE HEADER
This is a test log file
Function:System statistics
精彩图集
精彩文章