Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想从 CVS 服务器签出一堆文件。 有没有办法可以通过 cvs 命令传递一个文件名,其中包含我要签出的文件 是否有另一种方法可以实现?
您可能想查看该CVSROOT/modules文件的文档,然后像这样定义一个常规模块:
CVSROOT/modules
MyModule folder file1 file2 file3 [...]
然后,您将能够:
cvs co MyModule
假设您使用的是 bash 样式的 shell:
cvs co $(< myfile)
其中myfile包含您要签出的文件列表。
myfile
如果您谈论的是模块而不是文件,Oliver Giesen 的回答将会很有用。