Last active
December 17, 2015 23:49
-
-
Save ksoona/5691841 to your computer and use it in GitHub Desktop.
how I ripped off Kali and stole all their hard work
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
for LINE in `curl http://git.kali.org/gitweb/?a=project_index | sort` | |
do | |
if [ ! -e "kali/`echo $LINE | awk -F. '{print $1}'`" ] | |
then | |
git clone git://git.kali.org/$LINE `echo $LINE | awk -F. '{print $1}'` | |
else | |
cd $LINE | |
git pull | |
cd .. | |
fi | |
done |
"An artist is a good thief."
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is so rude.