⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 rcs2log

📁 MSYS在windows下模拟了一个类unix的终端
💻
📖 第 1 页 / 共 2 页
字号:
#! /bin/sh# RCS to ChangeLog generator# Generate a change log prefix from RCS files (perhaps in the CVS repository)# and the ChangeLog (if any).# Output the new prefix to standard output.# You can edit this prefix by hand, and then prepend it to ChangeLog.# Ignore log entries that start with `#'.# Clump together log entries that start with `{topic} ',# where `topic' contains neither white space nor `}'.Help='The default FILEs are the files registered under the working directory.Options:  -c CHANGELOG  Output a change log prefix to CHANGELOG (default ChangeLog).  -h HOSTNAME  Use HOSTNAME in change log entries (default current host).  -i INDENT  Indent change log lines by INDENT spaces (default 8).  -l LENGTH  Try to limit log lines to LENGTH characters (default 79).  -R  If no FILEs are given and RCS is used, recurse through working directory.  -r OPTION  Pass OPTION to subsidiary log command.  -t TABWIDTH  Tab stops are every TABWIDTH characters (default 8).  -u "LOGIN<tab>FULLNAME<tab>MAILADDR"  Assume LOGIN has FULLNAME and MAILADDR.  -v  Append RCS revision to file names in log lines.  --help  Output help.  --version  Output version number.Report bugs to <bug-gnu-emacs@gnu.org>.'Id='$Id: rcs2log,v 1.45 1998/08/12 22:33:01 eggert Exp $'# Copyright 1992, 93, 94, 95, 96, 97, 1998 Free Software Foundation, Inc.# This program is free software; you can redistribute it and/or modify# it under the terms of the GNU General Public License as published by# the Free Software Foundation; either version 2, or (at your option)# any later version.## This program is distributed in the hope that it will be useful,# but WITHOUT ANY WARRANTY; without even the implied warranty of# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the# GNU General Public License for more details.## You should have received a copy of the GNU General Public License# along with this program; see the file COPYING.  If not, write to the# Free Software Foundation, Inc., 59 Temple Place - Suite 330,# Boston, MA 02111-1307, USA.Copyright='Copyright 1998 Free Software Foundation, Inc.This program comes with NO WARRANTY, to the extent permitted by law.You may redistribute copies of this programunder the terms of the GNU General Public License.For more information about these matters, see the files named COPYING.Author: Paul Eggert <eggert@twinsun.com>'tab='	'nl=''# Parse options.# defaults: ${AWK=awk}: ${TMPDIR=/tmp}changelog=ChangeLog # change log file namedatearg= # rlog date optionhostname= # name of local host (if empty, will deduce it later)indent=8 # indent of log linelength=79 # suggested max width of log linelogins= # login names for people we know fullnames and mailaddrs ofloginFullnameMailaddrs= # login<tab>fullname<tab>mailaddr tripletslogTZ= # time zone for log dates (if empty, use local time)recursive= # t if we want recursive rlogrevision= # t if we want revision numbersrlog_options= # options to pass to rlogtabwidth=8 # width of horizontal tabwhile :do	case $1 in	-c)	changelog=${2?}; shift;;	-i)	indent=${2?}; shift;;	-h)	hostname=${2?}; shift;;	-l)	length=${2?}; shift;;	-[nu])	# -n is obsolescent; it is replaced by -u.		case $1 in		-n)	case ${2?}${3?}${4?} in			*"$tab"* | *"$nl"*)				echo >&2 "$0: -n '$2' '$3' '$4': tabs, newlines not allowed"				exit 1			esac			case $loginFullnameMailaddrs in			'') loginFullnameMailaddrs=$2$tab$3$tab$4;;			?*) loginFullnameMailaddrs=$loginFullnameMailaddrs$nl$2$tab$3$tab$4			esac			shift; shift; shift;;		-u)			# If $2 is not tab-separated, use colon for separator.			case ${2?} in			*"$nl"*)				echo >&2 "$0: -u '$2': newlines not allowed"				exit 1;;			*"$tab"*)				t=$tab;;			*)				t=:			esac			case $2 in			*"$t"*"$t"*"$t"*)				echo >&2 "$0: -u '$2': too many fields"				exit 1;;			*"$t"*"$t"*)				;;			*)				echo >&2 "$0: -u '$2': not enough fields"				exit 1			esac			case $loginFullnameMailaddrs in			'') loginFullnameMailaddrs=$2;;			?*) loginFullnameMailaddrs=$loginFullnameMailaddrs$nl$2			esac			shift		esac		case $logins in		'') logins=$login;;		?*) logins=$logins$nl$login		esac		;;	-r)		case $rlog_options in		'') rlog_options=${2?};;		?*) rlog_options=$rlog_options$nl${2?}		esac		shift;;	-R)	recursive=t;;	-t)	tabwidth=${2?}; shift;;	-v)	revision=t;;	--version)		set $Id		rcs2logVersion=$3		echo >&2 "rcs2log (GNU Emacs) $rcs2logVersion$nl$Copyright"		exit 0;;	-*)	echo >&2 "Usage: $0 [OPTION]... [FILE ...]$nl$Help"		case $1 in		--help) exit 0;;		*) exit 1		esac;;	*)	break	esac	shiftdonemonth_data='	m[0]="Jan"; m[1]="Feb"; m[2]="Mar"	m[3]="Apr"; m[4]="May"; m[5]="Jun"	m[6]="Jul"; m[7]="Aug"; m[8]="Sep"	m[9]="Oct"; m[10]="Nov"; m[11]="Dec"'# Put rlog output into $rlogout.# If no rlog options are given,# log the revisions checked in since the first ChangeLog entry.# Since ChangeLog is only by date, some of these revisions may be duplicates of# what's already in ChangeLog; it's the user's responsibility to remove them.case $rlog_options in'')	if test -s "$changelog"	then		e='			/^[0-9]+-[0-9][0-9]-[0-9][0-9]/{				# ISO 8601 date				print $1				exit			}			/^... ... [ 0-9][0-9] [ 0-9][0-9]:[0-9][0-9]:[0-9][0-9] [0-9]+ /{				# old-fashioned date and time (Emacs 19.31 and earlier)				'"$month_data"'				year = $5				for (i=0; i<=11; i++) if (m[i] == $2) break				dd = $3				printf "%d-%02d-%02d\n", year, i+1, dd				exit			}		'		d=`$AWK "$e" <"$changelog"` || exit		case $d in		?*) datearg="-d>$d"		esac	fiesac# Use TZ specified by ChangeLog local variable, if any.if test -s "$changelog"then	extractTZ='		/^.*change-log-time-zone-rule['"$tab"' ]*:['"$tab"' ]*"\([^"]*\)".*/{			s//\1/; p; q		}		/^.*change-log-time-zone-rule['"$tab"' ]*:['"$tab"' ]*t.*/{			s//UTC0/; p; q		}	'	logTZ=`tail "$changelog" | sed -n "$extractTZ"`	case $logTZ in	?*) TZ=$logTZ; export TZ	esacfi# If CVS is in use, examine its repository, not the normal RCS files.if test ! -f CVS/Repositorythen	rlog=rlog	repository=else	rlog='cvs -q log'	repository=`sed 1q <CVS/Repository` || exit	test ! -f CVS/Root || CVSROOT=`cat <CVS/Root` || exit	case $CVSROOT in	*:/*)		# remote repository		;;	*)		# local repository		case $repository in		/*) ;;		*) repository=${CVSROOT?}/$repository		esac		if test ! -d "$repository"		then			echo >&2 "$0: $repository: bad repository (see CVS/Repository)"			exit 1		fi	esacfi# Use $rlog's -zLT option, if $rlog supports it.case `$rlog -zLT 2>&1` in*' option'*) ;;*)	case $rlog_options in	'') rlog_options=-zLT;;	?*) rlog_options=-zLT$nl$rlog_options	esacesac# With no arguments, examine all files under the RCS directory.case $# in0)	case $repository in	'')		oldIFS=$IFS		IFS=$nl		case $recursive in		t)			RCSdirs=`find . -name RCS -type d -print`			filesFromRCSfiles='s|,v$||; s|/RCS/|/|; s|^\./||'			files=`				{					case $RCSdirs in					?*) find $RCSdirs \							-type f \							! -name '*_' \							! -name ',*,' \							! -name '.*_' \							! -name .rcsfreeze.log \							! -name .rcsfreeze.ver \							-print					esac					find . -name '*,v' -print				} |				sort -u |				sed "$filesFromRCSfiles"			`;;		*)			files=			for file in RCS/.* RCS/* .*,v *,v			do				case $file in				RCS/. | RCS/.. | RCS/,*, | RCS/*_) continue;;				RCS/.rcsfreeze.log | RCS/.rcsfreeze.ver) continue;;				RCS/.\* | RCS/\* | .\*,v | \*,v) test -f "$file" || continue;;				RCS/*,v | RCS/.*,v) ;;				RCS/* | RCS/.*) test -f "$file" || continue				esac				case $files in				'') files=$file;;				?*) files=$files$nl$file				esac			done			case $files in			'') exit 0			esac		esac		set x $files		shift		IFS=$oldIFS	esacesacllogout=$TMPDIR/rcs2log$$lrlogout=$TMPDIR/rcs2log$$rtrap exit 1 2 13 15trap "rm -f $llogout $rlogout; exit 1" 0case $datearg in?*) $rlog $rlog_options "$datearg" ${1+"$@"} >$rlogout;;'') $rlog $rlog_options ${1+"$@"} >$rlogoutesac || exit# Get the full name of each author the logs mention, and set initialize_fullname# to awk code that initializes the `fullname' awk associative array.# Warning: foreign authors (i.e. not known in the passwd file) are mishandled;# you have to fix the resulting output by hand.initialize_fullname=initialize_mailaddr=case $loginFullnameMailaddrs in?*)	case $loginFullnameMailaddrs in	*\"* | *\\*)		sed 's/["\\]/\\&/g' >$llogout <<EOF || exit$loginFullnameMailaddrsEOF		loginFullnameMailaddrs=`cat $llogout`	esac	oldIFS=$IFS	IFS=$nl	for loginFullnameMailaddr in $loginFullnameMailaddrs	do		case $loginFullnameMailaddr in		*"$tab"*) IFS=$tab;;		*) IFS=:		esac

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -