8 lines
106 B
Bash
8 lines
106 B
Bash
#!/bin/sh
|
|
|
|
FILES=`find . -type f -regex ".*\.[chS]\|.*\.cpp"`
|
|
|
|
echo running ctags
|
|
exuberant-ctags $FILES
|
|
|