1#!/bin/sh 2 3case $1 in 4 actix) 5 cargo watch -x "run --bin actix" 6 ;; 7 *) 8 cargo watch -x "run --bin hyper" 9 ;; 10esac