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:42] – 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 \" | ||
- | </ | ||
- | |||
bash/execute_a_command_in_every_directory.1581633742.txt.gz · Last modified: 2020/07/15 09:30 (external edit)