14 lines
235 B
Bash
Executable file
14 lines
235 B
Bash
Executable file
#!/bin/sh
|
|
|
|
for test in \
|
|
"-O nrl:checking" \
|
|
"-B 401" \
|
|
"-V 401" \
|
|
"-G 401" \
|
|
"-B retire" \
|
|
"-V retire" \
|
|
"-G retire"
|
|
do
|
|
echo testing: $test
|
|
python confirm.py $test
|
|
done
|