You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
486 B
9 lines
486 B
#!/bin/sh
|
|
echo To reconnect with this screen type:
|
|
echo
|
|
echo sudo screen -r chunkymapregen
|
|
echo
|
|
# -S names the socket (-t only sets the title)
|
|
#FAILS: flock -n /var/run/chunkymap-loop.lockfile -c "screen -S chunkymapregen python /home/owner/minetest/util/chunkymap-regen.py"
|
|
#FAILS: screen -S chunkymapregen flock -n /var/run/chunkymap-loop.lockfile -c python /home/owner/minetest/util/chunkymap-regen.py
|
|
sudo screen -S chunkymapregen python /home/owner/minetest/util/chunkymap-regen.py
|