-
Notifications
You must be signed in to change notification settings - Fork 22
/
subst
executable file
·51 lines (47 loc) · 1.07 KB
/
subst
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
#!/bin/sh
# Substitute a string in many files. By Serge van den Boom, 20020826
# We need bash functionality. Executing bash with the shebang won't be
# portable as the location of bash differs.
if [ -z "$BASH_VERSION" ]; then
exec bash "$0" "$@"
fi
if [ $# -eq 0 ]; then
{
echo "subst: substitute a string in a lot of files."
echo "By Serge van den Boom, 20020826"
echo "Usage: subst <pattern> <file> [...]"
echo -n "'pattern' should be a pattern in the form used by sed, "
echo " like 's/old/new/g'."
} 1>&2
exit 1
fi
PAT="$1"
SEP="${PAT:1:1}"
GREPPAT="${PAT:2}"
eval GREPPAT='${GREPPAT%%'$SEP'*}'
shift
while [ "$#" -gt "0" ]; do
FILE="$1"
echo -n "$FILE: "
grep -q "$GREPPAT" < "$FILE"
EXITVAL=$?
case $EXITVAL in
0) # Match found
;;
1) # No match found
echo "Nothing to do."
shift
continue
;;
*)
echo "ERROR"
echo "Error: grep returned exit value ${EXITVAL}. Aborted." 1>&2
exit 1
esac
TEMPFILE="${FILE}.patchtree.$$.tmp"
mv -- "$FILE" "$TEMPFILE"
sed -e "$PAT" < "$TEMPFILE" > "$FILE"
rm -- "$TEMPFILE"
echo "Done."
shift
done