Skip to content

Instantly share code, notes, and snippets.

@ksoona
Last active December 17, 2015 23:49
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ksoona/5691841 to your computer and use it in GitHub Desktop.
Save ksoona/5691841 to your computer and use it in GitHub Desktop.
how I ripped off Kali and stole all their hard work
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
@thomhastings
Copy link

This is so rude.

@ksoona
Copy link
Author

ksoona commented Oct 30, 2014

"An artist is a good thief."

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment