#!/bin/bash outf="temp.exe" g++ $1 -o $outf `root-config --cflags --glibs` ./$outf rm $outf