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 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91
|
# We simulate a working tree root so that quilt does not attempt to find one
# in a parent directory, as this would invalidate this test
$ mkdir $QUILT_PC
$ echo 2 > $QUILT_PC/.version
$ quilt add -h | grep -c '^Usage:'
> 1
$ quilt annotate -h | grep -c '^Usage:'
> 1
$ quilt applied -h | grep -c '^Usage:'
> 1
$ quilt delete -h | grep -c '^Usage:'
> 1
$ quilt diff -h | grep -c '^Usage:'
> 1
$ quilt edit -h | grep -c '^Usage:'
> 1
$ quilt files -h | grep -c '^Usage:'
> 1
$ quilt fold -h | grep -c '^Usage:'
> 1
$ quilt fork -h | grep -c '^Usage:'
> 1
$ quilt graph -h | grep -c '^Usage:'
> 1
$ quilt grep -h | grep -c '^Usage:'
> 1
$ quilt header -h | grep -c '^Usage:'
> 1
$ quilt import -h | grep -c '^Usage:'
> 1
$ quilt mail -h | grep -c '^Usage:'
> 1
$ quilt new -h | grep -c '^Usage:'
> 1
$ quilt next -h | grep -c '^Usage:'
> 1
$ quilt patches -h | grep -c '^Usage:'
> 1
$ quilt pop -h | grep -c '^Usage:'
> 1
$ quilt previous -h | grep -c '^Usage:'
> 1
$ quilt push -h | grep -c '^Usage:'
> 1
$ quilt refresh -h | grep -c '^Usage:'
> 1
$ quilt remove -h | grep -c '^Usage:'
> 1
$ quilt rename -h | grep -c '^Usage:'
> 1
$ quilt series -h | grep -c '^Usage:'
> 1
$ quilt setup -h | grep -c '^Usage:'
> 1
$ quilt snapshot -h | grep -c '^Usage:'
> 1
$ quilt top -h | grep -c '^Usage:'
> 1
$ quilt unapplied -h | grep -c '^Usage:'
> 1
$ quilt upgrade -h | grep -c '^Usage:'
> 1
|