xref: /Universal-ctags/Tmain/mtable-stats.d/run.sh (revision d4318624a22bccfe180b7a75abf0c1914ca4daee)
1# Copyright: 2018 Masatake YAMATO
2# License: GPL-2
3
4CTAGS=$1
5
6. ../utils.sh
7
8stats=/tmp/ctags-Tmain-$$
9${CTAGS} --quiet --options=NONE --options=./args.ctags --totals=extra -o - ./input.foo 2> ${stats}
10sed -n -e '/^MTABLE REGEX.*/,$p' ${stats} 1>&2
11rm ${stats}
12