Chinaunix首页 | 论坛 | 博客
  • 博客访问: 469422
  • 博文数量: 142
  • 博客积分: 4126
  • 博客等级: 上校
  • 技术积分: 1545
  • 用 户 组: 普通用户
  • 注册时间: 2008-02-22 10:03
文章分类

全部博文(142)

文章存档

2011年(8)

2010年(7)

2009年(64)

2008年(63)

我的朋友

分类: LINUX

2009-01-10 20:59:10

#!/bin/sh

find . -name "*.h" -o -name "*.c" -o -name "*.cc" > cscope.files cscope -bkq -i cscope.files

ctags -R

阅读(891) | 评论(1) | 转发(0) |
0

上一篇:史上最强vimrc

下一篇:lfs近期停工

给主人留下些什么吧!~~

chinaunix网友2009-01-13 21:19:47

why not: find . -name "*.[chSs]" -print | xargs ctags -a find . -name "*.[chSs]" -print > cscope.files cscope -bkqR ? Actually I prefer to add these targets to every project's top Makefile.