Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我编写了一个 Perl 程序,tail使用控制台中的以下命令从 Linux 机器上的命令捕获实时数据流:
tail
tail -f xyz.log | myperl.pl
它工作正常。但是现在我必须在不同的机器上执行这个 Perl 程序,因为日志文件在不同的机器上。谁能告诉我我该怎么做?
你可以说
ssh remotemachine tail -f xyz.log | myperl.pl
我想或者可能将远程日志目录本地安装到您的管理机器上并在那里进行处理。
或者你甚至可以说
ssh remotemachine bash -c "tail -f xyz.log | myperl.pl"
为了在远程机器上运行脚本(如果您的脚本产生一些输出文件并且您希望它们在远程机器上)