Skip to content

Instantly share code, notes, and snippets.

@bokwoon95
Created November 23, 2019 12:37
Show Gist options
  • Save bokwoon95/0b1c53e7f0a71780c274bb7b740dc9af to your computer and use it in GitHub Desktop.
Save bokwoon95/0b1c53e7f0a71780c274bb7b740dc9af to your computer and use it in GitHub Desktop.
#!/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