文件操作 - demo_parsetree.pl
返回文件管理
返回主菜单
删除本文件
文件: /usr/share/doc/perl-Parse-RecDescent-1.967009/demo/demo_parsetree.pl
编辑文件内容
#!/usr/bin/perl -sw # PARSE LOGICAL EXPRESSIONS TO A "list of lists" PARSE TREE sub printtree { print " " x $_[0]; print "$_[1]:\n"; foreach ( @_[2..$#_] ) { if (ref($_)) { printtree($_[0]+1,@$_); } else { print " " x $_[0], "$_\n" } } print "\n"; } use Parse::RecDescent; $RD_AUTOACTION = q{ [@item] }; $grammar = q{ expr : disj disj : conj 'or' disj | conj conj : unary 'and' conj | unary unary : 'not' atom | '(' expr ')' | atom atom : /[a-z]+/i }; $parse = new Parse::RecDescent ($grammar); while (<DATA>) { my $tree = $parse->expr($_); printtree(0,@$tree) if $tree; } __DATA__ a and b and not c (c or d) and f
修改文件时间
将文件时间修改为当前时间的前一年
删除文件