#!/bin/sh if [ -x a.out ]; then rm a.out fi g++ -Wall -o a.out $1 if [ -x a.out ]; then ./a.out fi