blob: c7198af542bc75721f3e68c742940ecd64a9e5ab (
plain)
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
|
#!/bin/bash
OLD="$1"
NEW="$2"
# sanity check in input args
if [ -z "$OLD" ] || [ -z "$NEW" ]; then
cat <<EOF
Usage: $0 <old> <new>
Changes the ADT plugin revision number.
Example:
cd tools/eclipse
scripts/update_version.sh 0.1.2 0.2.3
EOF
exit 1
fi
# sanity check on current dir
if [ `basename "$PWD"` != "eclipse" ]; then
echo "Please run this from tools/eclipse."
exit 1
fi
# quote dots for regexps
OLD="${OLD//./\.}\.qualifier"
NEW="${NEW//./\.}\.qualifier"
# Now find the same files but this time use sed to replace in-place with
# the new pattern. Old files get backuped with the .old extension.
grep -rl "$OLD" * | grep -E "\.xml$|\.MF$" | xargs -n 1 sed -i -e "s/$OLD/$NEW/g"
|