- 论坛徽章:
- 780
|
回复 1# jack9981
对于你提供的这个文件,可以这样。- awk 'BEGIN{keywords["define"];keywords["if"];keywords["for"]} !($1 in keywords)&&/.*\([^)]*\)/{sub(/^[[:space:]]*(.*>[[:space:]]*)?/,"");sub(/[[:space:]]*{.*/,"");print}' i
- a( )
- ~a( )
- fun1(int x) const
- fun2(int xx) : x(xx)
- fun3(int xx, int yy) : x(xx),y(yy)
- inline static void a::f(T s)
- void g(T, T = T())
- int f::perator+()
- int f::perator==()
- int f::perator@()
复制代码- cat i
- define sum( x, y ) {x+y}
- namespace x {
- class a {
- a( ) { }
- ~a( ){ if ( 0 );}
- fun1(int x) const { return p(x); }
- fun2(int xx) : x(xx) {}
- fun3(int xx, int yy) : x(xx),y(yy) {}
- }
-
- template<typename T>
- inline static void a::f(T s)
- {
- }
-
- template<class T> void g(T, T = T()){}
-
- int f::perator+() { ... }
- int f::perator==() { ... }
- int f::perator@() {
- for (int i = begin; i < end; i++) { }
- if (i != vector) {}
- }
复制代码 |
|