Skip to content

Instantly share code, notes, and snippets.

@metalelf0
Last active January 2, 2016 02:09
Show Gist options
  • Save metalelf0/8235602 to your computer and use it in GitHub Desktop.
Save metalelf0/8235602 to your computer and use it in GitHub Desktop.
#!/usr/bin/env sh
if ! [ $1 ]
then
echo "USAGE: methods_def_without_parentheses.sh path [optional paths]"
exit -1
fi
grep -iRn "^\s*def .*$" $* | grep -v ")$" | awk '{if ($4) print $0}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment