ディレクトリ $dir 内のファイル名のリストを Perl 配列に入力しようとしていますが、ディレクトリを除外したいと考えています。私のコードは次のとおりです。
my @lsArray = `ls -p $dir | grep -v '/$'`;
しかし、それはこのエラーを作成します:
sh: -c: line 0: unexpected EOF while looking for matching `''
sh: -c: line 1: syntax error: unexpected end of file
これを正しく行う引用符の組み合わせが見つからないようです。ありがとう....