#!/bin/sh open_in_terminal() { st -e sh -c "cd $(pwd); $1" } open_in_terminal 'npm run dev' & open_in_terminal 'php -S 0.0.0.0:8000' &