Created
November 23, 2019 12:37
-
-
Save bokwoon95/0b1c53e7f0a71780c274bb7b740dc9af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/expect | |
spawn dlv debug | |
expect "(dlv) " | |
foreach bp [lrange $argv 0 end] { | |
send "break $bp\r" | |
} | |
send "continue\r" | |
interact |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment