]> git.mxchange.org Git - core.git/blob - contrib/missing-methods.sh
Continued:
[core.git] / contrib / missing-methods.sh
1 #!/bin/sh
2
3 DEBUG_FILE="./debug.log"
4
5 if [ -f "$1" ]
6 then
7         DEBUG_FILE="$1"
8 fi
9
10 if [ ! -f "${DEBUG_FILE}" ]
11 then
12         echo "$0: DEBUG_FILE='${DEBUG_FILE}' does not exist."
13         exit 255
14 fi
15
16 grep -a __call "${DEBUG_FILE}" | cut -d "[" -f 4 | cut -d "]" -f 1