fix_copyright

来自「php-4.4.7学习linux时下载的源代码」· 代码 · 共 36 行

TXT
36
字号
#! /bin/sh## This script removes the Copyright messages and inserts # Copyright Abandoned messages.#if test -z "$1"; then	echo "Usage: $0 files"	echo	echo 'Usual parameters: *.c *.h'	exit 1fifor i in $@; do	sed \		-e '/Copyright Abandoned.*MySQL.*/,/NO WARRANTY of any kind/c\/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB \This file is public domain and comes with NO WARRANTY of any kind */' \		-e '/Copyright.*MySQL.*/,/MA 02111/c\/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB \This file is public domain and comes with NO WARRANTY of any kind */' \		-e '/Copyright (C) .*MySQL.*TCX/,/For a more info/c\/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB \This file is public domain and comes with NO WARRANTY of any kind */' \		-e '/Copyright (C) .*TCX.*Monty/,/For a more info/c\/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB \This file is public domain and comes with NO WARRANTY of any kind */' \		-e '/Copyright (C) .... Monty.*/,/be preserved on all copies/c\/* Copyright Abandoned 1996 TCX DataKonsult AB & Monty Program KB & Detron HB \This file is public domain and comes with NO WARRANTY of any kind */' \   < $i > tmp   cp tmp $idone

⌨️ 快捷键说明

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