spoj helper script

This commit is contained in:
Abhay Rana 2012-12-30 13:24:38 +05:30
parent c4360a81aa
commit e1220df4ca
1 changed files with 4 additions and 0 deletions

4
spoj Executable file
View File

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