yearcheck.sh
来自「Use the links below to download a source」· Shell 代码 · 共 102 行
SH
102 行
#!/bin/sh# Licensed to the Apache Software Foundation (ASF) under one or more# contributor license agreements. See the NOTICE file distributed with# this work for additional information regarding copyright ownership.# The ASF licenses this file to You under the Apache License, Version 2.0# (the "License"); you may not use this file except in compliance with# the License. You may obtain a copy of the License at## http://www.apache.org/licenses/LICENSE-2.0## Unless required by applicable law or agreed to in writing, software# distributed under the License is distributed on an "AS IS" BASIS,# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.# See the License for the specific language governing permissions and# limitations under the License.## Simple shell script that checks whether changed files contain a copyright# statement for a given year.## Rename (or symlink) this script to the year you want to check, i.e. name it# 2002 if you want to check for copyright statements that do not contain# the year 2002.## Use this script instead of your usual cvs update command.## Usage YEAR [precommit]## If the optional all argument has been omitted, the proposal directory will# be skipped.#if [ -n "$TMP" ]; then TEMP_DIR="$TMP"else if [ -n "$TEMP" ]; then TEMP_DIR="$TEMP" else TEMP_DIR=/tmp fifiYEAR=`basename $0`if [ $YEAR = yearcheck.sh ]; then YEAR=`date -R | cut -d ' ' -f 4`fiprecommit_call=falsefor arg in "$@" ; do if [ "$arg" = "precommit" ] ; then precommit_call=true fidoneif [ -d ".svn" ]; then SCM_COMMAND=svn if $precommit_call ; then SCM_ARGS=status CUT_ARGS="-c 8-" else SCM_ARGS=up CUT_ARGS="-c 4-" fielse SCM_COMMAND=cvs SCM_ARGS="-z3 update -dP" CUT_ARGS="-d ' ' -f 2"fi"$SCM_COMMAND" $SCM_ARGS > "$TEMP_DIR"/update-prefilter# filter out boring linesif [ "$SCM_COMMAND" = "svn" ]; then < "$TEMP_DIR"/update-prefilter fgrep -v 'At revision' | fgrep -v 'Updated to revision' | egrep -v '^\?' > "$TEMP_DIR"/updateelse cp "$TEMP_DIR"/update-prefilter "$TEMP_DIR"/updateficut $CUT_ARGS < "$TEMP_DIR"/update > "$TEMP_DIR"/changed-filesecho "Changed:"echo "========"cat "$TEMP_DIR"/changed-filesechoxargs fgrep -L Copyright < "$TEMP_DIR"/changed-files > "$TEMP_DIR"/no-copyrightecho "No Copyright line"echo "================="cat "$TEMP_DIR"/no-copyrightechoxargs egrep -L "Copyright.*$YEAR" < "$TEMP_DIR"/changed-files | cut -f 1 -d : > "$TEMP_DIR"/no-$YEARecho "No Copyright line for year $YEAR"echo "================================"cat "$TEMP_DIR"/no-$YEARrm "$TEMP_DIR"/no-$YEAR "$TEMP_DIR"/no-copyright "$TEMP_DIR"/changed-files "$TEMP_DIR"/update "$TEMP_DIR"/update-prefilter
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?