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

📄 kerneldiff

📁 This a good VPN source
💻
字号:
#!/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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -