#!/bin/sh count=$1if [ ! -z "$count" ]; then shift # Only do this if arg exists (fixes error)else count=2 # Default 2fi for i in `seq 1 $count` # 3, for 1 + the server + the starterdo godot -client "$@" &done