4 lines
101 B
Bash
4 lines
101 B
Bash
|
#!/bin/sh
|
||
|
me=$(whoami)
|
||
|
exec sudo /bin/nice --adjustment=-20 su $me -c "exec python3 -O rk_island.py"
|