14 lines
129 B
Bash
14 lines
129 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
source ${LIBSH}/libeval.sh
|
||
|
|
||
|
if [ $# -ne 2 ]
|
||
|
then
|
||
|
echo "usage: $0 step name" >&2
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
codechecker $1 "$2"
|
||
|
|
||
|
|