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

📄 bashdb

📁 linux脚本编程的例子
💻
字号:
# bashdb - a bash debugger# Driver Script: concatenates the preamble and the target script# and then executes the new script.echo 'Bash Debugger version 1.0'_dbname=${0##*/}if (( $# < 1 )) ; then  echo "$_dbname: Usage: $_dbname filename" >&2  exit 1fi_guineapig=$1if [ ! -r $1 ]; then  echo "$_dbname: Cannot read file '$_guineapig'." >&2  exit 1fishift_tmpdir=/tmp_libdir=._debugfile=$_tmpdir/bashdb.$$  # temporary file for script being debuggedcat $_libdir/bashdb.pre $_guineapig > $_debugfileexec bash $_debugfile $_guineapig $_tmpdir $_libdir "$@"

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -