xref: /Universal-ctags/Tmain/optlib-dir-option.d/run.sh (revision 5380404041bbae72d648cdccfc4042f041fdf8cb)
1# Copyright: 2017 Masatake YAMATO
2# License: GPL-2
3
4CTAGS=$1
5
6. ../utils.sh
7
8d=$(pwd)
9
10echo '#' specifying files 1>&2
11(
12	cd /
13	${CTAGS} --options=NONE --optlib-dir=$d/optlib --options=a.ctags --options=b.ctags --options=c.ctags
14)
15
16echo '#' specifying a dir 1>&2
17(
18	cd /
19	${CTAGS} --options=NONE --optlib-dir=$d --options=optlib
20)
21
22echo '#' reset 1>&2
23(
24	cd /
25	${CTAGS} --options=NONE --optlib-dir= --options=optlib
26)
27