shell编程学习笔记(七):Shell中将指定内容输出到文件中
我们这里把echo要打印的内容输出到文件中
以下蓝色字体部分为Linux命令,红色字体的内容为输出的内容:
# cd /opt/scripts
# vim script06.sh
开始编写script06.sh的脚本,脚本内容为:
#! /bin/sh echo "hello" > /opt/test/test1.txt cat /opt/test/test1.txt
上面的echo本来是输出到屏幕的,通过使用>,将要输出到屏幕的内容改为输出到文件中
然后,使用cat命令将输出到文件的内容输出到屏幕
# chmod +x script06.sh
# ./script06.sh
hello