Files
dotfiles/scripts/shell/job/repo-references-update.sh
2024-08-13 16:30:44 -03:00

14 lines
186 B
Bash
Executable File

#!/bin/bash
cur_dir=`pwd`
dirs=`find * -maxdepth 0 -type d`
for d in ${dirs[@]}; do
if [ $d = "code" ]; then
continue
fi
cd $cur_dir/$d
git pull --rebase
done