generate-mirror-listing.pl
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:1k
源码类别:
MySQL数据库
开发平台:
Visual C++
- #!/my/gnu/bin/perl -w -*- perl -*-
- # Generate a mirror listing
- line: while (<>) { last line if /START_OF_MIRROR_LISTING/;};
- print "MySQL mirror listingn";
- line: while (<>)
- {
- last line if /END_OF_MIRROR_LISTING/;
- if (/^@strong{([A-Za-z ]+):}$/)
- {
- print "n*** $1n";
- }
- elsif (m|^@image{Img/[a-z-]+} ([A-Za-z]+) [(.*)]|)
- {
- print "n$1 [$2]n";
- }
- # A hacky URL regexp
- # (m!^@uref{((http|ftp)://[^,]*), (FTP|WWW)}!)
- elsif (m!^@uref{((http|ftp)://[^,]*), (FTP|WWW)}!)
- {
- $addr = $1;
- print " $addrn";
- }
- }