xref: /Universal-ctags/Tmain/combination-of-fields-Zs.d/run.sh (revision 6a5a9c4c6248cff7483f5eea40ebcee89d1243c7)
1# Copyright: 2020 Masatake YAMATO
2# License: GPL-2
3
4CTAGS=$1
5
6echo '# Z only'
7$CTAGS --quiet --options=NONE --fields=Z -o - input.c 2>&1 \
8	| sed -e 's/\.exe//g' \
9	| sort
10
11# The last sort is needed because the order of lines from stdout and
12# that from stderr is not stable.
13