darling/tools/valueof
Andrew Hyatt 5f96f6c7fb
Rename tools to remove their file extensions
This makes it easy to add the folder to PATH and run commands
2018-05-17 10:02:35 -04:00

26 lines
240 B
Bash
Executable File

#!/bin/sh
set -e
cfile=/tmp/valueof.$$.c
include="$1"
var="$2"
cat > $cfile <<END
#include <stdio.h>
#include <$include>
int main()
{
printf("$var=%d\n", $var);
return 0;
}
END
gcc -w $3 $cfile -o $cfile.bin
$cfile.bin
rm $cfile*