‘tee’命令类似于’cat’命令, 只是有一个区别。它将stdin放在stdout上, 并将它们放入文件中。
句法:
cat or tac <fileName> | tee <newFile> | cat or tac |.....
例:
tac weeks.txt | tee new.txt | cat
看上面的屏幕截图, 文件’new.txt’是在’tee’命令的帮助下创建的。
‘tee’命令类似于’cat’命令, 只是有一个区别。它将stdin放在stdout上, 并将它们放入文件中。
句法:
cat or tac <fileName> | tee <newFile> | cat or tac |.....
例:
tac weeks.txt | tee new.txt | cat
看上面的屏幕截图, 文件’new.txt’是在’tee’命令的帮助下创建的。
评论前必须登录!
注册