1
0
mirror of https://github.com/captn3m0/Scripts.git synced 2024-09-21 00:57:51 +00:00
scripts/spoj
2012-12-30 13:24:38 +05:30

5 lines
82 B
Bash
Executable File

#!/bin/bash
problem=$1
g++ $1.cpp -o $1; ./$1 < $1.IN > $1.OUT
diff $1.TXT $1.OUT