标签:
---恢复内容开始---
初级阶段:
-- 文件操作:
-- 文件整体: 增、删、复制、移动;
-- 文件内容: 追加、覆盖、清空;
-- 正则表达式:
-- 字符串:
-- 截取,拼接;
echo " ABCD " > shellTest.log
: 将 " ABCD " 写入至 shellTest.log 中,如果shellTest.log不存在,将会首先创建 shellTest.log
echo " ABCD " >> shellTest.log
: 将 " ABCD " 追加至 shellTest.log 中,如果shellTest.log不存在,将会首先创建 shellTest.log
echo " ABCD " | tee shellTest.log
: 将 " ABCD " 写入至 shellTest.log 中,并将 " ABCD " 打印至标准输出中(命令行窗口),如果shellTest.log不存在,将会首先创建 shellTest.log
echo " ABCD " | tee -a shellTest.log
: 将 " ABCD " 追加至 shellTest.log 中,并将 " ABCD " 打印至标准输出中(命令行窗口),如果shellTest.log不存在,将会首先创建 shellTest.log
---恢复内容结束---
标签:
原文地址:http://www.cnblogs.com/duchao-hit/p/5594131.html