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.
私はUnixマシンを使用しており、rshを介してWindowsマシンにリモート接続し、特定のディレクトリにあるすべてのファイルを一覧表示する必要があります。
私が読んだコードのほとんどは本当に紛らわしいです。これを行う方法の短い例はありますか?
rsh $machine -l $user "dir $directory"
正常に動作するはずです。
このようにしてみてください:
my @files = qx(rsh $machine -l $user "dir $directory");
qx は、結果を 1 行に 1 エントリの配列として返すシステム コールです。
好奇心から、紛らわしい例にリンクできますか?