view bin/runc @ 3678:e4904d8fb386

<kmc> printf \'#!/usr/bin/env python\\nimport sys\\nimport unicodedata\\n\\nprint unicodedata.lookup(sys.argv[1]).encode("utf-8")\\n\' > bin/unicode && chmod +x bin/unicode
author HackBot
date Mon, 09 Sep 2013 22:56:08 +0000
parents ee2e8950bb3c
children 81b2b9bd8d25
line wrap: on
line source

#!/bin/bash
t=`tempfile`
echo -e "$@" | gcc -o $t -x c - 2>/dev/null && $t
rm $t