7 lines
122 B
Bash
7 lines
122 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# start sshd
|
||
|
/usr/sbin/sshd -D -f /home/ecs-user/.ssh/sshd_config &
|
||
|
|
||
|
# run solver
|
||
|
/competition/solver /rundir
|