mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-19 21:59:16 +02:00
6 lines
106 B
Bash
Executable file
6 lines
106 B
Bash
Executable file
#!/bin/bash
|
|
|
|
while [ 1 ]
|
|
do
|
|
gdb --eval-command=run --eval-command=quit --args cyclone cyclone.scm
|
|
done
|