私は2つのPerlスクリプトを持っていて、他のものの1つを使いたいです。
これらのスクリプトはscript1.pl
と呼ばれますscript2.pl
。
内部で次のコマンドを実行したいと思いますscript1.pl
。
/home/user/script2.pl /var/log/fw_log error >>/tmp/error.log
ベストアンサー1
Perlに組み込まれている「システム」機能を使用してこれを実行できます。
system "/home/user/script2.pl /var/log/fw_log error >>/tmp/error.log";