view interps/c-intercal/c-intercal @ 5189:976725b1eb6b

<int-e> revert
author HackBot
date Thu, 11 Dec 2014 18:50:00 +0000
parents 2dc7e24eca16
children afc311c3d00b
line wrap: on
line source

#!/bin/bash
if [ ! "$1" ]
then
    exit 1
fi

INTERCAL="`dirname $0`/inst"

cp "$1" /tmp/$$.i
$INTERCAL/bin/ick /tmp/$$.i
if [ -e /tmp/$$ ]
then
    /tmp/$$
fi
rm -f /tmp/$$.i /tmp/$$