1#!/bin/sh 2# Copyright: 2016 Masatake YAMATO 3# License: GPL-2 4 5CTAGS=$1 6 7${CTAGS} --quiet --options=NONE \ 8 --print-language \ 9 --langdef=AAA --map-AAA='(input.xxx)' \ 10 --langdef=BBB --map-BBB=.xxx \ 11 input.xxx && 12${CTAGS} --quiet --options=NONE \ 13 --print-language \ 14 --langdef=AAA --map-AAA=.xxx \ 15 --langdef=BBB --map-BBB='(input.xxx)' \ 16 input.xxx 17 18exit $? 19 20