Path: utzoo!attcan!uunet!lll-winken!lll-lcc!ames!ucsd!rutgers!cmcl2!adm!smoke!gwyn From: gwyn@smoke.ARPA (Doug Gwyn ) Newsgroups: comp.unix.questions Subject: Re: RCS and SCCS Message-ID: <8294@smoke.ARPA> Date: 2 Aug 88 06:03:28 GMT References: <890@fig.bbn.com> <710@ubu.warwick.UUCP> <661@pyuxe.UUCP> <29953@cca.CCA.COM> <1023@unccvax.UUCP> <8187@brl-smoke.ARPA> <3494@rpp386.UUCP> <1207@dragon.UUCP> Reply-To: gwyn@brl.arpa (Doug Gwyn (VLD/VMB) ) Organization: Ballistic Research Lab (BRL), APG, MD. Lines: 10 In article <1207@dragon.UUCP> charles@dragon.UUCP (Charles Wolff, 602 438-3432) writes: >we did come across an interesting problem with sccs today... > DATE_TOUCH=`date +%m%d%H%M%y` >... sccs saw %H% in the middle of the line and decided >that was an SCCS significant string... Yes, "get"'s %X% substitution is useful except when something like this happens. "get -k" will suppress all %X% keyword substitutions. If you want to suppress just an individual case, I know of no method other than to arrange for there to be no keyword pattern. E.g. DATE_TOUCH=`date +%m%d%H'%'M%y`