rwxrob-dot/scripts/funcsin
Rob Muhlestein 2ea0289e9f Rebase
2022-02-09 02:29:05 -05:00

8 lines
123 B
Bash
Executable File

#!/bin/sh
#TODO rewrite without subprocs
egrep '^[-_[:alpha:]]+ ?\(' $1 | while read line; do
echo ${line%%[ (]*}
done