# | Line 30 | Line 30 | checkcvs(){ | |
---|---|---|
30 | return 0 | |
31 | } | |
32 | ||
33 | < | checkcvs $1 |
33 | > | exclude= |
34 | > | dir= |
35 | > | while [ $# -gt 0 ]; do |
36 | > | case $1 in |
37 | > | -x) |
38 | > | exclude=$2 |
39 | > | shift |
40 | > | shift |
41 | > | ;; |
42 | > | *) |
43 | > | dir=$1 |
44 | > | break |
45 | > | ;; |
46 | > | esac |
47 | > | done |
48 | > | |
49 | > | checkcvs $dir "$exclude" |
50 | > | # exclusion not implemented yet |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |