blob: fe13685104164c493ceb0a4f14783e3305efd3b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
files=$(ls *.jpg)
for file in $files; do
if [ $file = "DSC07203.jpg" ]; then
base_name=${file%.jpg} # wycina rozszerzenie
save_name=$base_name.suffix.jpg
run="gimp -i --batch-interpreter plug-in-script-fu-eval -b '(przem-soft-focus-noninteractive-v3 "$file" "$save_name")' -b '(gimp-quit 0)'"
eval "$run"
#mv $save_name SAVE
fi
done
|