mirror of
https://git.freebsd.org/ports.git
synced 2025-05-01 19:16:39 -04:00
8 lines
175 B
Perl
8 lines
175 B
Perl
#!/usr/bin/perl
|
|
|
|
use strict;
|
|
use warnings;
|
|
use File::Temp qw(tempfile);
|
|
|
|
my ($fh, $fn) = tempfile("check-XXXXXX", SUFFIX => '.tmp', TMPDIR => 1, UNLINK => 1);
|
|
#print "$fn\n";
|