File: matcher.pl.template

package info (click to toggle)
svnkit 1.10.3-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 18,332 kB
  • sloc: java: 234,840; sh: 312; xml: 273; makefile: 26; python: 17; perl: 8
file content (11 lines) | stat: -rwxr-xr-x 174 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl

my $command_line = "";

foreach $argnum (0 .. $#ARGV) {
   $command_line .= "'@ARGV[$argnum]' ";
}
if ($command_line =~ m/%pattern%/) {
   exit 0;
}
exit 1;