> From: gabriela.gib...@gmail.com > Date: Thu, 16 Apr 2015 13:51:46 +0100 > Subject: Small script page for the wiki? > To: dev@corinthia.incubator.apache.org >
> # Usage: build-corinthia <name of directory you'd like> > > > if test -z "$1"; then printf 'Please supply a directory name.\n'; exit; fi > if test -e "$1"; then printf 'The directory already exists.\n'; exit; fi > mkdir $1 > cd $1 > git clone https://git-wip-us.apache.org/repos/asf/incubator-corinthia.git > cd incubator-corinthia/ > mkdir "build" > find . -name "*.[ch]" -print0 | xargs -0 etags - > cmake -G "Unix Makefiles" $pwd > make > > That may not suit everyone, but it saves a lot on typing, and I can use > that time to go make coffee instead and come back to a ready made > playground :-) +1 Great idea, very helpful! franz