A simple program evaluator. Useful for practicing for Competitive Programming Competitions
While practicing for Programming Competitions, Have you ever been in a situation where you had to enter inputs again and again for every change you made in your code? It really gets tiring, doesn't it? This is where pe helps you! It automates the testing of program by saving you from the trouble of manually inputing data.
pe PROGRAM_FILE INPUT_FILE OUTPUT_FILE
For help, use: pe -h
pe main.exe input.txt output.txt
pe myprogram mycode/input mycode/output
- Download pe script.
- Copy the file to
\bin
or\usr\bin
. - Change the Permission to make it executable.
cd
to the directory where pe is located.- Use
chmod u+x pe
to make it executable.
- For Windows 10, install Linux Bash Shell. For earlier versions of Windows, install Cygwin.
- Download pe script.
- Change the Permission to make it executable.
cd
to the directory where pe is located.- Use
chmod u+x pe
to make it executable.
- Highlights Correct and Incorrect output with Green and Red colors respectively.
- Show incorrect output only.
- Randomly generate input using user-defined templates.
- Group Input and Output.