作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
如何在 bash 脚本中使用 cat 创建文件?
下面的命令在 shell 中运行良好,但不能作为脚本运行:
cat > list.txt
Orange
Apple
Grape
Kiwi
Papaya
Banana
Strawberry
Blueberry
Peach
Pear
CTRL-D
最佳答案
使用 here document在脚本中:
$ cat > list.txt <<EOF
Orange
Apple
Grape
Kiwi
Papaya
Banana
Strawberry
Blueberry
Peach
Pear
EOF
关于linux - 如何在 bash 脚本中使用 cat 创建文件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36375179/
我是一名优秀的程序员,十分优秀!