for f in find *.png; do convert "$f" "$f".pdf; done
これは、ディレクトリ内のpngファイルを見つけてpdfに変換する必要がありますが、エラーが発生します。 Bashでこれを行うより良い方法は何ですか?すべてのpngファイルをBashのpdfに変換するには?
convert: unable to open image `find': No such file or directory @ error/blob.c/OpenBlob/2705.
convert: no decode delegate for this image format `' @ error/constitute.c/ReadImage/504.
convert: no images defined `find.pdf' @ error/convert.c/ConvertImageCommand/3257.
bashは魔法のようにfindを "実行"する方法を知っていますか? bashは "\ *。png" 'here'を展開するのではなく、 '*'を見つけることを知っていますか? – John3136