If you only need a list of files (without any other information), you can add the glowcoder command with sed :
svn status -v | sed 's/\s*\d*\s*\d*\s.*\s//'
Filters information before file names (at least for me)
Explanation of sed argument:
- The first \ d * filters out the current audit revision
- The second \ d * filters out the current version of the file.
- . * filters out authors name
(\ s * filters out spaces)
Veger
source share