mirror of
https://github.com/VincentWei/MiniGUI.git
synced 2025-10-18 09:11:26 +08:00
8 lines
144 B
Bash
8 lines
144 B
Bash
#!/bin/sh
|
|
for i in $*
|
|
do
|
|
grep "EXPORT_SYMBOL.*(.*)" "$i" \
|
|
| sed -e "s/EXPORT_SYMBOL.*(/ /" \
|
|
| sed -e "s/).*$//" | sed -e "s/^ //"
|
|
done
|