testlib
来自「Particle filtering implementation and ap」· 代码 · 共 24 行
TXT
24 行
#!/bin/bashif [ -z "$1" ]; then echo "Syntax: rtestlib <library>" exit 1fiFNAME=`mktemp rtestlibXXXXXX`echo "int main() { return 0; }" > $FNAME.cppg++ $1 $FNAME.cpp -o $FNAMEresult=$?rm -f $FNAME.cpp $FNAMEexit $result#if g++ $1 $FNAME.cpp -o $FNAME#then## rm -f $FNAME.cpp $FNAME# exit 1#else# rm -f $FNAME.cpp $FNAME# exit 0#fi
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?