Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
remzi-arpacidusseau
GitHub Repository: remzi-arpacidusseau/ostep-projects
Path: blob/master/initial-utilities/wzip/test-wzip.sh
1315 views
1
#! /bin/bash
2
3
if ! [[ -x wzip ]]; then
4
echo "wzip executable does not exist"
5
exit 1
6
fi
7
8
../../tester/run-tests.sh $*
9
10
11
12