?? bashdb.pre
字號:
# bashdb preamble# This file gets prepended to the shell script being debugged.# Arguments:# $1 = the name of the original guinea pig script# $2 = the directory where temporary files are stored# $3 = the directory where bashdb.pre and bashdb.fns are stored_debugfile=$0_guineapig=$1_tmpdir=$2_libdir=$3shift 3source $_libdir/bashdb.fns_linebp=()let _trace=0let _i=1while read; do _lines[$_i]=$REPLY let _i=$_i+1done < $_guineapigtrap _cleanup EXITlet _steps=1LINENO=-2trap '_steptrap $LINENO' DEBUG:
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -