view interps/c-intercal/c-intercal @ 4111:121edf7a23f4

<FreeFull> rm -f "wisdom/stephen wolfram"
author HackBot
date Sat, 30 Nov 2013 23:37:41 +0000
parents 859f9b4339e6
children 2dc7e24eca16
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/$$