コマンドに完全な文字列で行を入力する方法
スペースを含むファイルを含むディレクトリ $ ls . 'File A' 'File B' 'File C' $ walk . . ./File A ./File B ./File C ls は各スペースを新しいファイルとして解釈します。 $ ls -ld $(walk .) ls: cannot access './File': No such file or directory ls: cannot access 'A': No such file or directory ls: cannot access './File': No such ...