您的位置:首页 > 其它

How to find code and file

2013-04-30 23:50 435 查看
Commands for searching the src code
grep -r "XXX" Dir/
XXX is the name of function that you want to find
Dir is the directory you want to search
find Dir/ -name "XXX"
Dir is the directory you want to search
XXX is the file name you want to find
More about 'grep' and 'find', use 'man' to find more
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: