📄 ptt_trace_skel
字号:
#! /bin/sh# these two lines are modified during the installation process to create# ptt_traceLIBDIR=path_to_libdirBINDIR=path_to_bindirLIBGLIBC=$LIBDIR/libpthread.so.0LIBPTT=$LIBDIR/libpthread_ptt.so.0SPEC=ARGS=while [ $# != 0 ]; do [ $1 != "-ori" ] && ARGS="$ARGS $1" [ $1 == "-ori" ] && SPEC="-ori" shiftdonecase $SPEC in -ori ) LD_PRELOAD=$LIBGLIBC $ARGS ;; * ) $BINDIR/ptt_daemon $LIBPTT $ARGS ;;esac
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -