File: action.right

package info (click to toggle)
bashdb 3.1.0.9-1
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 3,252 kB
  • ctags: 117
  • sloc: sh: 4,880; pascal: 3,186; lisp: 484; makefile: 315; ansic: 294
file content (20 lines) | stat: -rw-r--r-- 498 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
(dbg-test1.sh:22):
22:	x=22
+# Debugger test of action command
+# 
+# Try a simple action breakpoint...
+a 23 x=60
Breakpoint 0 set at dbg-test1.sh:23.
+L 
No breakpoints have been set.
No watch expressions have been set.
Actions at following places:
Num Enb Stmt               file:line
0     1 x=60               dbg-test1.sh:23
+cont 24
One-time breakpoint 1 set in file dbg-test1.sh, line 24.
(dbg-test1.sh:24):
24:	for i in 0 1 3 ; do
+print "value of x is now $x"
value of x is now 60
+quit