Git/suuid/: New commits
[sunny256-utils.git] / cvscat
blob282b632f5e5d4bf90a547258ed326e0dc4af5bb8
1 #!/usr/bin/env bash
3 # cvscat
4 # File ID: e1b60c7c-5d37-11df-b6cd-90e6ba3022ac
6 if [ $# -le 1 ]; then
7 cat <<END
9 Syntax: cvscat file revision [cvs options]
11 END
12 exit 1
15 cvsfile=$1
16 shift
17 revision=$1
18 shift
20 cvs -d $(cat CVS/Root) co -p -r $revision $* $(cat CVS/Repository)/$cvsfile