Skip to content

Instantly share code, notes, and snippets.

@jakzal
Created April 2, 2015 13:37
Show Gist options
  • Save jakzal/7134b1c7a018d349863a to your computer and use it in GitHub Desktop.
Save jakzal/7134b1c7a018d349863a to your computer and use it in GitHub Desktop.
Find unused methods in a PHP code base
#!/bin/bash
ag 'function.*\(' | \
sed -e 's/.*function \([^(]*\)(.*/\1/g' | \
sort -u | \
xargs -I% bash -c "[ `ag '%\(' | wc -l` == 1 ] && echo %"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment