1# Copyright: 2020 Masatake YAMATO 2# License: GPL-2 3 4CTAGS=$1 5 6. ../utils.sh 7 8O="--quiet --options=NONE " 9 10for c in number pattern mixed combine; do 11 ${CTAGS} $O \ 12 --excmd=$c \ 13 --extras=+p --pseudo-tags=TAG_OUTPUT_EXCMD \ 14 -o - \ 15 input.c 16done 17