Skip to content

Instantly share code, notes, and snippets.

View jkbmaj's full-sized avatar

Jakub Maj jkbmaj

View GitHub Profile
@jkbmaj
jkbmaj / update_git_repos.sh
Last active April 30, 2018 07:29 — forked from douglas/update_git_repos.sh
Update all git repositories under a base directory
#!/bin/bash
# store the current dir
CURRENT_DIR=$(pwd)
if [[ $1 == '' ]] ;then
BASE_DIR=${CURRENT_DIR}
else
BASE_DIR=$1;
fi