3 # Runs setup.sh in all configuration directories.
6 # Projects which use git.
7 projects="browser lftp mail music os shell vcs vim"
9 # Run .setup.sh in each project.
10 for project in $projects; do
11 [ -d "$project" ] && (echo "running setup.sh in '$project'";
12 cd "$project"; ./setup.sh > /dev/null)