Code Search for Developers
 
 
  

pullchanges.sh from Thousand Parsec at Krugle


Show pullchanges.sh syntax highlighted

#! /bin/sh

for DIR in ls *; do
	if [ -d $DIR ]; then
		if [ -d $DIR/_darcs ]; then
			echo
			echo $DIR
			echo "------------------------------------------"
			cd $DIR
			darcs pull
			cd ..
			echo "------------------------------------------"
		fi
	fi
done




See more files for this project here

Thousand Parsec

Thousand Parsec is a framework for turn based 4 X\'s game (eXplore, eXpand, eXploit, eXterminate). Designed for long games, supporting massive universes and has an easily expanded tech tree.

Project homepage: http://sourceforge.net/projects/thousandparsec
Programming language(s): C++,Python
License: other

  anychanges.sh
  darcs-manual.html
  darcs-posthook.pl
  pullchanges.sh
  pushchanges.sh
  sendchanges.sh