flowercheck
来自「BCAST Implementation for NS2」· 代码 · 共 18 行
TXT
18 行
#!/bin/shif [ $# -lt 1 ] ; then echo "Usage: $0 <program [program parameters]>" exit 1fi# this looks in the same directory, this# FlowerCheck script resides; modify to your# needs:SHLIB=./flower_malloc.soif [ ! -x $SHLIB ] ; then echo "$SHLIB not found" exit 1fiexport LD_PRELOAD=$SHLIBexec $@
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?