lhunath 1294237074 learn To step through your code, look into bashdb or put this where you want to begin stepping: trap 'read -p "[$BASH_SOURCE:$LINENO] $BASH_COMMAND?"' DEBUG lhunath 1299489741 forget lhunath 1299489763 learn To step through your code, look into bashdb or put this where you want to begin stepping: trap '(read -p "[$BASH_SOURCE:$LINENO] $BASH_COMMAND?")' DEBUG emanuele6 1636664100 forget emanuele6 1636664216 learn step through your code, look into bashdb or put this where you want to begin stepping: debug_prompt () { read -p "[$BASH_SOURCE:$LINENO] $BASH_COMMAND?" _ ;}; trap 'debug_prompt "$_"' DEBUG