#!/bin/sh -e ASM="uxncli $HOME/roms/drifblim.rom" EMU="uxnemu" LIN="uxncli $HOME/roms/uxnlin.rom" ID="icnchr" SRC="${ID}.tal" DST="${ID}.rom" CPY="$HOME/roms" ARG="pc9820x10.chr" if [[ "$*" == *"--lint"* ]] then $LIN $SRC fi $ASM $SRC $DST if [[ "$*" == *"--save"* ]] then cp $DST $CPY fi $EMU $DST $ARG