📄 createtags
字号:
#!/bin/sh## Here we check to see if we are compiling in a directory that contains# symlinks to the source files instead of the actual files. If this is so, # we setup the TAGS entries to point to the actual source directory.#filelist=""if test "`find main.c -type l -print `" != "" ; then prefix=`ls -l main.c | awk '{print $11}' | sed 's;main.c$;;'`else prefix=""fi# Replace .o at end of filename with .cfor i in $@ ; do file=`echo $i-x- | sed -e 's/\.o-x-/\.c-x-/' | sed -e 's/-x-//'` filelist="$filelist $prefix$file"doneetags $filelist
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -