summaryrefslogtreecommitdiffstats
path: root/docs/SHORTCUTS
Commit message (Expand)AuthorAgeFilesLines
* This commit was manufactured by cvs2svn to create tagV10_3_0_34mdkMystery Man2005-07-111-51/+0
* add F1 & F2Pascal Rigaux2002-02-081-0/+2
* no_commentPascal Rigaux1999-12-171-0/+9
* no_commentPascal Rigaux1999-10-251-0/+6
* no_commentPascal Rigaux1999-10-201-1/+1
* no_commentPascal Rigaux1999-10-081-0/+34
, $already_have); $already_have = '(' . join('|', map { quotemeta } @l) . ')'; } my ($file_list) = @ARGV; foreach my $file (cat_($file_list)) { chomp $file; $file =~ m!/tmp/live_tree! or next; $already_have && $file =~ /^$already_have$/ and next; if (-l $file ? !$no_link : -d $file ? !$no_dir : 1) { my $s = $full_dirs && $file =~ /^$full_dirs/ ? "/tmp/live_tree$1" : $file; push @l, $s; } } print "$_\n" foreach sort(uniq(@l));