📌  相关文章
📜  如何将命令的输出打印到 linux 中的文件 - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:49:45.411000             🧑  作者: Mango

代码示例1
# To Save output of a command to a file in linux you need to
# add '> filename' to the end of the command like below
# Examples :
$ ls > output.txt
$ grep -inR "something" . > output.txt