/ Published in: Bash
Expand |
Embed | Plain Text
#!/bin/bash if [ ! "$1" ] then 1='.' fi echo "Processing $1" svn add $1 `svn st $1 | grep '^?.*' | tr -d '? ' | sort -n | tr '\n' ' '`
You need to login to post a comment.
berkes on 12/22/07
1 person have marked this snippet as a favorite
#!/bin/bash if [ ! "$1" ] then 1='.' fi echo "Processing $1" svn add $1 `svn st $1 | grep '^?.*' | tr -d '? ' | sort -n | tr '\n' ' '`
You need to login to post a comment.