| #!/bin/zsh# waifu2x daemon scriptgpu=1port=8812if [ $# -eq 2 ]; then    gpu=$1    port=$2fisource /home/ubuntu/.zshrcecho stdbuf -o 0 th web.lua -gpu $gpu -port $port >> ./waifu2x_${port}.log 2>&1stdbuf -o 0 th web.lua -gpu $gpu -port $port >> ./waifu2x_${port}.log 2>&1
 |