#!/bin/sh case $1 in actix) cargo watch -x "run --bin actix" ;; hyper) cargo watch -x "run --bin hyper" ;; *) cargo watch -x "test" ;; esac