Perl script code example to create temporary directory-tempdir()
Posted on April 28th, 2008 by linux
Here is a perl script example how to create temporary directory on the file system:
#!/usr/bin/perl
use File::Temp qw/ tempdir /;
my $perl_temporary_directory = tempdir();
Filed under: Linux, Perl, Programming