Added for_all_dirs function to loop through all subdirectories of the current directory and run a command there.

Example: $ for_all_dirs svn up
This will update each subdirectory's content from Subversion. Useful in case you have multiple separate Subversion projects from different roots in the directory that you want to update using one command.
pull/140/head
Nils Winkler 2012-05-29 14:26:31 +02:00
parent 84fac4f680
commit e2c9c06f96
1 changed files with 15 additions and 0 deletions

View File

@ -183,3 +183,18 @@ buf ()
local filetime=$(date +%Y%m%d_%H%M%S)
cp ${filename} ${filename}_${filetime}
}
for_all_dirs ()
{
about 'loops through all subdirectories of the current directory and executes the specified command in each of them'
param 'command'
group 'base'
example '$ for_all_dirs svn up'
for dir in */
do
echo "Processing $dir"
cd "$dir"
$*
cd ..
done
}