3 lines
94 B
Bash
3 lines
94 B
Bash
|
#!/bin/bash
|
||
|
find src -name \*.h | xargs grep -h "void lv" | sed 's/(/ /g' | awk '{print $2}'
|