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 スクリプトを使用してディレクトリからいくつかのファイルを削除するためにrmを使用していますが、エラーがスローされます can't exec "rm" no such file or directory。
can't exec "rm" no such file or directory
コマンドは次のようになります。
system("rm $directory$files"); $directory$files = /var/spool/mqueue/qf*
Perl には、ファイルを削除する組み込み関数unlink. 3 番目の例は、 と組み合わせて使用しglob、ファイルのリストを削除する方法を示しています。
unlink
glob
unlink glob "*.bak";
またはあなたの場合、
unlink glob($directory.$files);