forked from mattray/spiceweasel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.sh
48 lines (48 loc) · 1.57 KB
/
test.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
echo "------------>spiceweasel"
spiceweasel
echo "------------>Return code:$?"
echo "------------>spiceweasel -h"
spiceweasel -h
echo "------------>Return code:$?"
echo "------------>spiceweasel -h example.yml"
spiceweasel -h example.yml
echo "------------>Return code:$?"
echo "------------>spiceweasel -v"
spiceweasel -v
echo "------------>Return code:$?"
echo "------------>spiceweasel -v example.yml"
spiceweasel -v example.yml
echo "------------>Return code:$?"
echo "------------>spiceweasel --version"
spiceweasel --version
echo "------------>Return code:$?"
echo "------------>spiceweasel example.yml"
spiceweasel example.yml
echo "------------>Return code:$?"
echo "------------>spiceweasel --dryrun"
spiceweasel --dryrun
echo "------------>Return code:$?"
echo "------------>spiceweasel --dryrun example.yml"
spiceweasel --dryrun example.yml
echo "------------>Return code:$?"
echo "------------>spiceweasel --help"
spiceweasel --help
echo "------------>Return code:$?"
echo "------------>spiceweasel -d"
spiceweasel -d
echo "------------>Return code:$?"
echo "------------>spiceweasel -d example.yml"
spiceweasel -d example.yml
echo "------------>Return code:$?"
echo "------------>spiceweasel --delete example.yml"
spiceweasel --delete example.yml
echo "------------>Return code:$?"
echo "------------>spiceweasel -r"
spiceweasel -r
echo "------------>Return code:$?"
echo "------------>spiceweasel -r example.yml"
spiceweasel -r example.yml
echo "------------>Return code:$?"
echo "------------>spiceweasel --rebuild example.yml"
spiceweasel --rebuild example.yml
echo "------------>Return code:$?"