Views:
10,672
Votes: 2
✅ Solution
Tags:
command-line
bash
Link:
🔍 See Original Answer on Ask Ubuntu ⧉ 🔗
URL:
https://askubuntu.com/q/1037190
Title:
Bash script to run python script for all images in all subdirectories
ID:
/2018/05/17/Bash-script-to-run-python-script-for-all-images-in-all-subdirectories
Created:
May 17, 2018
Upload:
September 15, 2024
Layout: post
TOC:
false
Navigation: false
Copy to clipboard: false
From Super User they tell us how to loop through sub-directories:
for d in */ ; do
echo "$d"
done
Using this reference you can use nested for
loops:
for d in */ ; do
for file in "$d"/*.jpg
do
python modifyImage.py /"$file" /"$file"
done
done