Lines Matching refs:SCCS
15 # Sccs2rcs is a script to convert an existing SCCS
23 # + It will NOT delete or alter your ./SCCS history under any circumstances.
25 # + Run in a directory where ./SCCS exists and where you can
29 # (SCCS under Ultrix is set-uid sccs, bad bad bad, so
30 # /usr/local/bin/sccs here fixes that)
36 # "rm -rf RCS; sccs unedit `sccs tell`; sccs clean"
43 # the date of a delta to be in sync, then run "sccs admin -z"
46 # + After everything finishes, ./SCCS will be moved to ./old-SCCS.
58 # Modified to detect SCCS binary files. If binary, skip the keyword
66 # for the Pmax, /usr/ucb/sccs is suid sccs, what a pain
67 # /usr/local/bin/sccs should override /usr/ucb/sccs there
78 if (! -d SCCS) then
79 echo "Error: ./SCCS directory not found."
82 set edits = (`sccs tell`)
97 sccs clean
192 # Loop over every s-file in SCCS dir
194 foreach sfile (SCCS/s.*)
202 # the "f" keyword is set to binary. The SCCS file has
211 sccs prs $file | grep "^D " | @AWK@ '{print $2}' | sed -e 's/\./ /g' | sort -n -u $sort_each_field | sed -e 's/ /./g' > $revfile
222 set date = `sccs prs -r$rev $file | @AWK@ '/^D / {print (substr($3,0,2)+0<70?20:19) $3, $4; exit}'`
223 set author = `sccs prs -r$rev $file | @AWK@ '/^D / {print $5; exit}'`
226 sccs edit -r$rev $file >>& $logfile
228 echo checked out of SCCS
230 # add RCS keywords in place of SCCS keywords (only if not binary)
274 sccs prs -r$rev $file | grep "." > $tmpfile
287 sccs unedit $file >>& $logfile
298 mv SCCS old-SCCS
303 echo " SCCS history now in old-SCCS/"
309 foreach f (`sccs tell`)
310 sccs unedit $f
319 echo Original unchanged history in ./SCCS