⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bashdb.pre

📁 linux脚本编程的例子
💻 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 + -