标签:http nbsp width logs hello img 重定向 dem info
一:echo作用
向屏幕输出指定内容的字符
echo hello
二:tee作用
从标准的输入读取并写入标准输出或文件中,即双向覆盖重定向(屏幕输出|文本输入)
echo hello|tee demo.txt (demo.txt不存在,会自己创建,并将hello写入到文件中)
-a 追加写入,将内容追加到上次内容之后
# TODO
标签:http nbsp width logs hello img 重定向 dem info
原文地址:https://www.cnblogs.com/meloncodezhang/p/12915236.html