3 # Copyright (C) 2006 OpenWrt.org
5 # This is free software, licensed under the GNU General Public License v2.
6 # See /LICENSE for more information.
16 open FIND
, "find $path -not -path \\*.svn\\* -and -not -path \\*CVS\\* $options 2>/dev/null |";
32 (@ARGV > 0) or push @ARGV, ".";
37 my $path = shift @ARGV;
39 my $str = shift @ARGV;
40 $options{"findopts"} .= " -and -not -path \\*".$str."\\*"
41 } elsif ($path =~ /^-f/) {
42 $options{"findopts"} .= " -follow";
43 } elsif ($path =~ /^-/) {
46 my ($tmp, $fname) = get_ts
($path, $options{"findopts"});
60 } elsif ($options{"-t"}) {
This page took 0.050322 seconds and 5 git commands to generate.