1
0
mirror of https://github.com/captn3m0/Scripts.git synced 2024-07-06 05:09:34 +00:00
scripts/spoj

5 lines
82 B
Plaintext
Raw Normal View History

2012-12-30 07:54:38 +00:00
#!/bin/bash
problem=$1
g++ $1.cpp -o $1; ./$1 < $1.IN > $1.OUT
diff $1.TXT $1.OUT