license-status
来自「lustre 1.6.5 source code」· 代码 · 共 27 行
TXT
27 行
#! /bin/sh# license-status - Display the status of files in the current directory# Copyright (C) 2001 Cluster File Systems, Inc.## This code is issued under the GNU General Public License.# See the file COPYING in this distribution## Gordon Matzigkeit <gord@fig.org>, 2001-09-27for f in `find . -type f | sort`; do case "$f" in *~ | *.orig | *.gz | */config.* | *.o | \ */CVS/* | */.cvsignore | */.depfiles/* | \ */COPYING | */ChangeLog) continue ;; esac if head -20 "$f" | egrep -e 'GNU' > /dev/null; then echo "gpled $f" elif head -20 "$f" | egrep -e '\([Cc]\)' > /dev/null; then echo "copyrighted $f" else echo "bare $f" fidone | sort
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?