December 2007
6 posts
Websites can also be seen as finite-state machines that run on people....
– wrapping up 2007 (28 December 2007, Interconnected)
Which of my projects are using Git?
I forget which projects are on git and which are on svn. Here’s a one liner to find the git ones. find * -maxdepth 2 | grep "/.git$" | sed -e "s/\/.git//" Then pipe that to xargs and you can do whatever you like with the knowledge. Ahh, unix ftw.