📄 flowercheck
字号:
#!/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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -