view interps/c-intercal/c-intercal @ 3281:ebb10a2f0393

<oerjan> echo \'A partial order is just a thin skeletal category.\' >wisdom/\'partial order\'
author HackBot
date Sat, 06 Jul 2013 03:39:59 +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/$$