perl6 Config Netrc:.netrc用于Perl 6的文件解析器模块 源码
姓名 Config :: Netrc-用于解析Netrc配置文件的模块。 概要 use Config::Netrc; say Config::Netrc::parse-file( ' my-example.netrc ' ); 描述 基本上有两个主要功能:解析和解析文件。 第一个函数采用一串netrc文件内容,如果解析器失败,则返回带有某些签名或Nil值的哈希。 该哈希包含两个数组: comments和entries 。 在注释部分中,您将获得所有注释字符串(不带前导# ),在条目部分中,您将获得具有以下结构的哈希数组: machine => {value => val, comment => my-comment}, login => {value => val, comment => my-comment}, password => {value => val, comme
用户评论