7 lines
120 B
Bash
7 lines
120 B
Bash
|
|
#!/bin/bash
|
||
|
|
header_awk ()
|
||
|
|
{
|
||
|
|
grep --color=auto -RE $CFUNCTION src | cut -d: -f2 | sed s/\$/';'/g
|
||
|
|
}
|
||
|
|
header_awk "$@"
|