Skip to content

Instantly share code, notes, and snippets.

@piratecarrot
Created August 16, 2021 07:01
Show Gist options
  • Save piratecarrot/da133b2d89be9a3ac926a4fcc0ef1774 to your computer and use it in GitHub Desktop.
Save piratecarrot/da133b2d89be9a3ac926a4fcc0ef1774 to your computer and use it in GitHub Desktop.
#!/bin/bash
DIR=~/workspaces/kicad
REPOS=('symbols' 'footprints' '3dmodels')
for i in "${REPOS[@]}"
do
echo git -C $DIR/$i "$@"
git -C $DIR/$i "$@"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment