博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gen kernel cscope.files 2.6.22.6
阅读量:3524 次
发布时间:2019-05-20

本文共 1850 字,大约阅读时间需要 6 分钟。

#!/bin/shset -x KERNEL=$PWDfind $KERNEL/arch/arm/boot/ -name "*.[chsS]" -print > $KERNEL/cscope.filesfind $KERNEL/arch/arm/common/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/arch/arm/kernel/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/arch/arm/lib/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/arch/arm/mach-s3c2410/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/arch/arm/mach-s3c2440/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/arch/arm/mm/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/arch/arm/nwfpe/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/arch/arm/plat-s3c24xx/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/arch/arm/vfp/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/block -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/crypto -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/drivers -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/fs -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/include/acpi/ -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/include/asm-arm/ -maxdepth 1 -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/include/asm-arm/arch-s3c2410/  -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/include/asm-arm/mach/  -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/include/asm-arm/plat-s3c24xx/  -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/include/asm-arm/hardware/  -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/include/linux/  -name "*.[chsS]" -print >> $KERNEL/cscope.filesfind $KERNEL/init/  -name "*.[chsS]" -print >> $KERNEL/cscope.filescscope -bkq -i $KERNEL/cscope.filesctags -n -f tags --fields=+aiS  * -L $KERNEL/cscope.filesexport CSCOPE_DB=$KERNEL/cscope.out

转载地址:http://qpuhj.baihongyu.com/

你可能感兴趣的文章
Mysql利用注解进行开发
查看>>
Mybatis一对多查询,多对一查询
查看>>
Spring配置bean.xml文件的头目录模板
查看>>
代理模式之------动态代理
查看>>
Spring实现AOP的三种方式
查看>>
Mybatis-Spring简单的配置和使用,配置事务
查看>>
SpringMVC和Mybatis整合使用的配置文件
查看>>
代码特效插件pycharm
查看>>
python实现tcp客户端从服务端下载文件
查看>>
将字符串 “k:1|k1:2|k2:3|k3:4” 转换成字典{“k”:1,”k1”:2,”k2”:3,”k3”:4}
查看>>
AttributeError: 'tuple' object has no attribute 'decode'
查看>>
node爬虫(牛刀小试)
查看>>
关于vue的seo优化
查看>>
字符串在html中的页面中的换行
查看>>
react父子组件间的通信和传值
查看>>
vue-cli3.0设置环境变量
查看>>
vue父组件直接操作子组件的方法(不通过$emit和$on)
查看>>
vue上传文件到UCloud
查看>>
获取input选择文件的本地地址
查看>>
React绑定全局方法或变量
查看>>