dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles # fast
git clone https://src.adamsgaard.dk/dotfiles.git # slow
Log | Files | Refs | README | LICENSE Back to index

ctags_recurse (282B)


      1 #!/bin/sh
      2 
      3 # .[cfh] are POSIX, the rest is implementation specific
      4 find ${1:-.} -type f \( \
      5 	-iname '*.c' -o -iname '*.h' -o -iname '*.f' -o \
      6 	-iname '*.cc' -o -iname '*.cxx' -o -iname '*.cpp' -o \
      7 	-iname '*.hh' -o -iname '*.hxx' -o -iname '*.hpp' \
      8 	\) -print0 | xargs -0 ctags