#!/bin/sh -e ASM="uxncli $HOME/roms/drifblim.rom" EMU="uxncli" LIN="uxncli $HOME/roms/uxnlin.rom" APP="$HOME/bin/butler push" SRC="hx.tal" DST="hx.rom" CPY="$HOME/roms" ARG="test.txt" echo ">> Cleaning" rm -rf bin mkdir bin if [[ "$*" == *"--lint"* ]] then echo ">> Linting $SRC" $LIN $SRC fi echo ">> Assembling $SRC" $ASM $SRC $DST if [[ "$*" == *"--save"* ]] then echo ">> Saving $DST" cp $DST $CPY fi echo ">> Running $DST" $EMU $DST $ARG