File: matcher.pl.template

package info (click to toggle)
svnkit 1.8.6-1
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 17,256 kB
  • ctags: 26,264
  • sloc: java: 221,083; ansic: 389; xml: 273; sh: 264; makefile: 47; 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;