码迷,mamicode.com
首页 > 其他好文 > 详细

bash scripts收集

时间:2018-09-14 23:12:56      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:ESS   bin   one   etc   nes   sed   str   RoCE   span   

只保留代码中的头文件声明

#! /bin/sh  
echo "leave only INCluding declaration in c files"  
find $1 -name "*.c" -exec echo ">>> processing" {} \; -exec sed -i ‘  
#fetch lines without leading #include  
/^\s*#\s*include\s/b  
#b代表分支跳转,如果不代label,则代表跳转到脚本结尾(即直接返回)
/.*$/d  
#delete this lines
‘ {} \;
 
找出一个文件中所有的函数名
grep -E ‘^\w*([a-zA-Z0-9_]+ +)+([a-zA-Z0-9_]+) ?\(‘ lxFwd_Fwd.c 

 

bash scripts收集

标签:ESS   bin   one   etc   nes   sed   str   RoCE   span   

原文地址:https://www.cnblogs.com/realplay/p/9649137.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!