7 lines
78 B
Bash
7 lines
78 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
echo Debugmode on:
|
||
|
./debug_program
|
||
|
echo Debugmode off:
|
||
|
./program
|