-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvnlock.sh
executable file
·86 lines (73 loc) · 1.97 KB
/
svnlock.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env bash
# Recursively (un)lock all files in a given svn directory.
# Copyright (C) 2014 Evan Lowry <[email protected]>
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
showhelp() {
echo "usage: [-u] [-p] [-m <message>] directory"
}
lock() {
DIR=$1
if [[ ! -z "$2" ]]; then
MSG="-m \"$2\""
fi
echo "Gathering files"
files=`$SVN list -R $DIR | grep -v '/$'`
ALLFILES=""
for file in $files; do
ALLFILES+="$DIR/$file "
done
echo "Locking files"
$SVN lock "$MSG" $ALLFILES
echo "All files in $DIR locked."
}
unlock() {
DIR=$1
echo "Gathering files"
files=`$SVN st -u $DIR | grep "^.\{5\}[O|K]" | rev | cut -d' ' -f1 | rev`
ALLFILES="$(echo $files)"
echo "Unlocking files"
$SVN unlock --force $ALLFILES
echo "All files in $DIR unlocked."
}
UNLOCK_FLAG=
SVN_PASS=
# Parse Command Line Arguments
while getopts "upm:" opt; do
case "$opt" in
u) UNLOCK_FLAG=1
;;
m) LOCK_MSG="$OPTARG"
;;
p) read -s -p "Enter SVN Password: " SVN_PASS
;;
\?) showhelp
;;
esac
done
DIR=${@:$OPTIND:1}
if [[ -z "$DIR" ]]; then
showhelp
exit 1
fi
SVN="svn"
if [[ ! -z "$SVN_PASS" ]]; then
SVN="svn --password $SVN_PASS"
fi
echo -e "\nNow running ...\n"
if [[ ! -z "$UNLOCK_FLAG" ]]; then
unlock "$DIR"
else
lock "$DIR" "$LOCK_MSG"
fi