kerneldiff

来自「This a good VPN source」· 代码 · 共 36 行

TXT
36
字号
#!/bin/sh# wander through a FreeSWAN linux directory, comparing each file to # a corresponding file in the argument $KERNELSRC directory, creating# a diff that can be used to update the FreeSWAN source tree.## This script is useful if you have used "make kernelpatch" to patch # a kernel, and then had to edit the source code in the kernel tree.## $Id: kerneldiff,v 1.1 2002/08/03 18:04:00 mcr Exp $#KERNELSRC=$1shift(cd linux && find . -type f -print) | grep -v CVS | egrep -v './Makefile' | while read file do   base=`basename $file`  case $base in     .cvsignore) ;;    .*.o.flags) ;;    *.o) ;;    *~) ;;    *.$patchname.patch) ;;    *.patch) ;;    *.orig) ;;    *.rej) ;;    version.c);;    *) diff -u linux/$file $KERNELSRC/$file ;;  esacdoneexit 0	

⌨️ 快捷键说明

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