blob: 09bc0f754b676302eecc4f18c0f17a7de6431351 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#/bin/bash
FILES=`svn status | sed -e '/^[^?]/d
s/^?//
s/^ *//
s/ /\\ /'`
echo ${FILES}
if [ "${1}" = "do" ]; then
if [ "x${FILES}" != "x" ]; then
svn add "${FILES}"
fi
fi
|