bash:execute_a_command_in_every_directory
This is an old revision of the document!
BASH - Execute a command in every directory
for d in [0-9][0-9][0-9] do ( cd "$d" && your-command-here ) done
find . -maxdepth 1 -type d \( ! -name . \) -exec bash -c "cd '{}' && pwd" \;
find ~/Music/ -type d \( ! -name . \) -exec bash -c "cd \"{}\" && fdupes -dN . " \;
bash/execute_a_command_in_every_directory.1581633742.txt.gz · Last modified: 2020/07/15 09:30 (external edit)