- Warning:please use chmod +x runProgram.sh to give permission to run before use.
./runProgram.sh <path_to_program_file> <path_to_test_data_file>
<path_to_program_file>
: The relative or absolute path to the program file.<path_to_test_data_file>
: The relative or absolute path to the file containing test data.
- Java (
.java
) - Python (
.py
) - C (
.c
) - C++ (
.cpp
)
./runProgram.sh MyProgram.java input.txt
The script will automatically detect the file type based on the extension and execute the corresponding actions.
警告! 在使用前请使用chmod +x runProgram.sh赋予权限运行
./runProgram.sh <程序文件路径> <测试数据文件路径>
<程序文件路径>
:程序文件的相对或绝对路径。<测试数据文件路径>
:包含测试数据的文件的相对或绝对路径。
- Java(
.java
) - Python(
.py
) - C(
.c
) - C++(
.cpp
)
./runProgram.sh MyProgram.java input.txt
脚本将根据文件扩展名自动检测文件类型,并执行相应的操作。