21 lines
388 B
Bash
Executable file
21 lines
388 B
Bash
Executable file
#!/bin/sh
|
|
|
|
ADDR=209.141.55.64
|
|
PORT=5460
|
|
|
|
if [ ! -d ./n ]; then
|
|
mkdir ./n
|
|
fi
|
|
|
|
# start the 9p client and wait for it to initialize
|
|
9pfuse "tcp!${ADDR}!${PORT}" ./n & sleep 1
|
|
|
|
#run the xrxs client
|
|
uxnemu ./xrxs.rom
|
|
|
|
# logout **VERY IMPORTANT**
|
|
# if you don't logout, your username is taken until the server restarts!
|
|
if [ -e ./n/ctl ]; then
|
|
echo "logout" >> ./n/ctl
|
|
fi
|
|
fusermount -u ./n
|