Batch operation on files (Linux shell) Batch svn operations: svn status | grep "^\!" | awk -F"\!" '{print $2}' | while read f; do svn remove "$f"; done Batch rename: ls -1 | awk -F"!" '{print $1}' | while read f; do mv "$f" "$f.mp3"; done