gpt4 book ai didi

linux - 在 linux 中远程运行 history 命令

转载 作者:太空宇宙 更新时间:2023-11-04 10:20:24 25 4
gpt4 key购买 nike

我的要求是通过在远程服务器上运行以下命令,将命令的历史记录保存到名为 history_yymmdd.txt 的文件中。

history > history_20170523.txt

我尝试使用以下命令,但它在远程服务器 (10.12.13.14) 上创建了一个空白文件。

ssh 10.12.13.14 "history > history_20170523.txt"

当我登录到远程服务器并运行 history 命令时,文件创建成功。但我需要在 20 台服务器上运行该命令,因此我的目标是创建一个脚本以在每台服务器上远程运行它。

提前致谢。

最佳答案

ssh user@machine_name "cat ~/.bash_history > history_20170523.txt"

“history”命令转储 .bash_history 的内容,因此这可能对您有用。

一个更优雅的解决方案可能是:

scp user@machine_name:~/.bash_history history_20170523.txt

关于linux - 在 linux 中远程运行 history 命令,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44138353/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com