あなたが必要
- 画像のリストを 1 行に 1 つずつ生成する 1 つのコマンド。
list_images
、またはfilename
画像のリストを含むものとして呼び出します
- 1サイクル
- コマンド、画像を読み取るもの
- 1 つの変数 (「image_name」と呼びます)
- matlab を実行するコマンド
- 場所、ここに出力が行くはずです
何かのようなもの:
list_images | while read image_name
do
matlab_command "$image_name" > "$image_name.output"
done
またはそれ以上
while read image_name
do
matlab_command "$image_name" > "$image_name.output"
done < filename_with_images.txt
の意味がよくわかりませんhave amatrix images in a file
。入力の例を投稿してください。
prj
現在のディレクトリ内のファイルを見つけるための編集
find . -maxdepth 0 -name \*.prj -print0 | while IFS= read -r -d '' image_name
do
matlab_command "$image_name" > "$image_name.output"
done
「bash チュートリアル」の Google。