Simple one-liner that I use when I’ve loads
of files to add to a subversion repository:
for FILETOADD in `svn stat | awk '{ print $2 }'`; do svn add $FILETOADD; done
‘svn add’ one-liner
&
Simple one-liner that I use when I’ve loads
of files to add to a subversion repository:
for FILETOADD in `svn stat | awk '{ print $2 }'`; do svn add $FILETOADD; done
Instead of being outdoors I geeked out indoors this weekend and amongst other things installed a Bitcoin daemon on a public facing server so I could have a play with the API/RPC features.
Below I document the steps I followed as it turned out to be slightly more taxing than the usual apt-get install bitcoind