svn ls $URL | sed "s,/$,," | cut -d ' ' -f6 | xargs <command>
In case of ATLAS, I often use it to checkout a whole folder from the SVN repository through the svnco
command, with:
svn ls $URL | sed "s,/$,," | cut -d ' ' -f6 | xargs `which svnco`
(see: http://stackoverflow.com/questions/1407567/pipe-shell-output-to-svn-del-command)
Written on November 14th, 2016 by Riccardo Maria Bianchi