You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
406 B
14 lines
406 B
#!/bin/bash
|
|
|
|
case "$1" in
|
|
#cvs --help-commands 2>&1 | sed "s/[ ][ ]*/ /g" | cut -d " " -f 2
|
|
add|admin|annotate|checkout|commit|diff|edit|editors|export|history|import|\
|
|
init|log|login|logout|pserver|rdiff|release|remove|rtag|server|status|\
|
|
tag|unedit|update|watch|watchers)
|
|
cmd="$1"; shift;;
|
|
*) cmd=update;;
|
|
esac
|
|
|
|
cvs -z3 -d :pserver:anonymous@cvs.libvncserver.sf.net:/cvsroot/libvncserver $cmd "$@"
|
|
|