8 lines
152 B
Bash
Executable File
8 lines
152 B
Bash
Executable File
#!/bin/bash
|
|
|
|
[ -x /input.sh ] && /input.sh
|
|
|
|
cd /builder/openwrt && /usr/bin/screen -Logfile /output/screen.log -L "$@"
|
|
|
|
[ -x /output.sh ] && /output.sh
|