changeset 4449:7f36d3fcd1f8

(fixfile): Change grep pattern again, since the previous fix didn't work (there was another trailing $). Use '[$]' to escape the $s.
author Paul Eggert <eggert@cs.ucla.edu>
date Tue, 15 Jul 2003 20:20:39 +0000
parents 9861654ee99b
children 689b53c7f51a
files config/srclist-update
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/config/srclist-update
+++ b/config/srclist-update
@@ -1,5 +1,5 @@
 #!/bin/sh
-# $Id: srclist-update,v 1.8 2003-07-15 12:47:27 karl Exp $
+# $Id: srclist-update,v 1.9 2003-07-15 20:20:39 eggert Exp $
 #
 # Check for files in directory $1 being up to date, according to the
 # list on stdin.  Don't actually make any changes, just show the diffs.
@@ -74,7 +74,7 @@
   *)
     cat $1;;
   esac \
-  | grep -v '\$Id: srclist-update,v 1.8 2003-07-15 12:47:27 karl Exp $2
+  | grep -v '[$]Id:.*[$]' >&$2
 }