📄 yacc_compile.sh
字号:
#!/bin/shYACC="$1"SRC="$2"DEST="$3"dir=`dirname $SRC`file=`basename $SRC`base=`basename $SRC .y`if [ -z "$YACC" ]; then # if $DEST is more recent than $SRC, we can just touch # otherwise we touch but print out warnings if [ -r $DEST ]; then if [ x`find $SRC -newer $DEST -print` = x$SRC ]; then echo "warning: yacc not found - cannot generate $SRC => $DEST" >&2 echo "warning: yacc not found - only updating the timestamp of $DEST" >&2 fi touch $DEST; exit; fi echo "error: yacc not found - cannot generate $SRC => $DEST" >&2 exit 1;fi# if $DEST is more recent than $SRC, we can just touchif [ -r $DEST ]; then if [ x`find $SRC -newer $DEST -print` != x$SRC ]; then touch $DEST; exit; fifiTOP=`pwd`if cd $dir && $YACC -d $file; then if [ -r y.tab.h -a -r y.tab.c ];then #echo "info: move files" sed -e "/^#/!b" -e "s|y\.tab\.h|$SRC|" -e "s|\"$base.y|\"$SRC|" y.tab.h > $base.h sed -e "s|y\.tab\.c|$SRC|" -e "s|\"$base.y|\"$SRC|" y.tab.c > $base.c rm -f y.tab.c y.tab.h elif [ ! -r $base.h -a ! -r $base.c]; then echo "$base.h nor $base.c generated." exit 1 fificd $TOP
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -