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.
我需要编写一个能够登录到 svn 存储库的脚本,并为我在许多服务器上运行的脚本签出配置文件。
Perl 是我唯一可以使用的脚本语言,但我完全是 perl 新手。
有人可以指出我正确的方向,也许给我一些示例和/或文档的链接。
更新:我无法在远程服务器上安装 svn。不安装svn就不行吗?
吉斯利
使用 LWP::Simple 并通过 HTTP 获取它:
#!/usr/bin/perl use LWP::Simple; my $config = get("http://username:password@svn.yourserver.com/configfile/");
或者只是在启动脚本之前使用 wget 来获取它。