bash:execute_a_command_in_every_directory
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
bash:execute_a_command_in_every_directory [2020/02/13 22:47] – peter | bash:execute_a_command_in_every_directory [2021/01/26 14:26] (current) – removed peter | ||
---|---|---|---|
Line 1: | Line 1: | ||
- | ====== BASH - Execute a command in every directory ====== | ||
- | |||
- | <code bash> | ||
- | for d in [0-9][0-9][0-9] | ||
- | do | ||
- | ( cd " | ||
- | done | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | find . -maxdepth 1 -type d \( ! -name . \) -exec bash -c "cd ' | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | <code bash> | ||
- | find ~/Music/ -type d \( ! -name . \) -exec bash -c "cd \" | ||
- | </ | ||
- | |||
- | ---- | ||
- | |||
- | If you're using GNU find, you can try -execdir parameter, e.g.: | ||
- | |||
- | <code bash> | ||
- | find . -type d -execdir realpath " | ||
- | </ | ||
- | |||
- | or | ||
- | |||
- | <code bash> | ||
- | find . -type d -execdir sh -c ' | ||
- | </ | ||
- | |||
- | Note: You can use ${0#./} instead of $0 to fix ./ in the front. | ||
- | |||
- | or more practical example: | ||
- | |||
- | <code bash> | ||
- | find . -name .git -type d -execdir git pull -v ';' | ||
- | </ | ||
- | |||
- | If you want to include the current directory, it's even simpler by using -exec: | ||
- | |||
- | <code bash> | ||
- | find . -type d -exec sh -c 'cd -P -- " | ||
- | </ | ||
- | |||
- | or using xargs: | ||
- | |||
- | <code bash> | ||
- | find . -type d -print0 | xargs -0 -L1 sh -c 'cd " | ||
- | </ | ||
- | |||
- | Or | ||
- | |||
- | <code bash> | ||
- | find . -type d -print0 | while IFS= read -r -d '' | ||
- | # ... | ||
- | done | ||
- | </ | ||
- | |||
- | The above examples support directories with spaces in their name. | ||
- | |||
- | Or by assigning into bash array: | ||
- | |||
- | <code bash> | ||
- | dirs=($(find . -type d)) | ||
- | for dir in " | ||
- | cd " | ||
- | echo $PWD | ||
- | done | ||
- | </ | ||
- | |||
- | Change . to your specific folder name. | ||
- | |||
- | If you don't need to run recursively, | ||
- | |||
- | ---- | ||
- | |||
- | The only proper way to put the output of find in an array without using an explicit loop will be available in Bash 4.4 with: | ||
- | |||
- | <code bash> | ||
- | mapfile -t -d '' | ||
- | </ | ||
- | |||
- | Or not a recommended way (which involves parsing of ls): | ||
- | |||
- | <code bash> | ||
- | ls -d */ | awk ' | ||
- | </ | ||
bash/execute_a_command_in_every_directory.1581634064.txt.gz · Last modified: 2020/07/15 09:30 (external edit)