view bin/runc @ 4858:81b2b9bd8d25

<fizzie> sed -i -e \'s/gcc/gcc -trigraphs/\' bin/runc
author HackBot
date Wed, 24 Sep 2014 06:23:03 +0000
parents ee2e8950bb3c
children
line wrap: on
line source

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