怎么把shell命令的回显写入另一个文件,另一个文件没有写权限
时间: 2023-12-10 07:38:47 浏览: 82
VB文件操作实例,启动IE浏览器
你可以使用重定向符号 `>` 将命令的输出重定向到另一个文件中,例如:
```
command > /path/to/another-file
```
这将把 `command` 命令的输出写入 `/path/to/another-file` 文件中。如果你没有权限写入这个文件,可以使用 `sudo` 命令以管理员权限执行该命令:
```
sudo command > /path/to/another-file
```
这样就可以将命令的输出写入 `/path/to/another-file` 文件中了。
阅读全文