Added for CRLF translation.

git-svn-id: svn://svn.code.sf.net/p/sc2/code/trunk@88 8092fc87-c524-0410-9efc-e669fe64eaf9
This commit is contained in:
meep-eep
2002-09-27 20:26:35 +00:00
parent 5f247e4dcb
commit d474af1565
2 changed files with 49 additions and 0 deletions
Executable
+45
View File
@@ -0,0 +1,45 @@
#!/usr/bin/bash
# Substitute a string in many files. By Serge van den Boom, 20020826
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