wyvern/dev.sh

11 lines
202 B
Bash
Raw Normal View History

2018-07-26 09:28:37 +00:00
#!/bin/bash
function watch {
while ls *.lua | inotifywait -e modify --fromfile -; do cp -v *.lua mnt; done
}
function mount {
ccfuse -m mnt -h ws://switchcraft.pw:4533 -c wyverndev
}
mount & watch