Bash: loop through directory of files and act on each
In this example, we svn revert every file in the directory:
for each in `ls .`; do svn revert $each; done
In this example, we svn revert every file in the directory:
for each in `ls .`; do svn revert $each; done