Skip to content

Instantly share code, notes, and snippets.

@yusuketomoto
Last active March 7, 2016 12:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yusuketomoto/bef1890d858c1e5d03d1 to your computer and use it in GitHub Desktop.
Save yusuketomoto/bef1890d858c1e5d03d1 to your computer and use it in GitHub Desktop.
clone from remote repo list
#!/bin/sh
filename=$1
while read line ; do
git clone ${line}
done < ${filename}
#!/bin/bash
cd $1
FILES="./*"
for PATH in $FILES;
do
if [ -d $PATH ];
then
cd $PATH
/usr/bin/git config --get remote.origin.url >/dev/null 2>&1
if [ $? -eq 0 ];
then
RESULT=`/usr/bin/git config --get remote.origin.url`
if [ 'git@github.com:openframeworks/openFrameworks.git' != $RESULT ];
then
echo $RESULT
fi
fi
cd ..
fi
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment