cvs global_options command command_options
For example, here is a simple sequence of commands showing both kinds
of options in the context of creating a repository, importing
existing files, and performing a few common operations on them:
$ cvs -d /usr/local/cvsrep init
$ cd ~/work/hello
$ cvs -d /usr/local/cvsrep import -m 'Import' hello vendor start
$ cd ..
$ mv hello hello.bak
$ cvs -d /usr/local/cvsrep checkout hello
$ cd hello
$ vi hello.c
$ cvs commit -m 'Fixed a typo'
$ cvs tag hello-1_0
$ cvs remove -f Makefile
$ cvs commit -m 'Removed old Makefile'
$ cvs upd -r hello-1_0
$ cvs upd -A