1
0
mirror of https://github.com/imapsync/imapsync.git synced 2024-11-17 00:02:29 +01:00
imapsync/W/learn/file_spec
Nick Bebout c08a56e486 1.504
2012-09-02 19:08:57 -05:00

15 lines
219 B
Perl
Executable File

#!/usr/bin/perl
use strict;
use warnings;
use File::Spec;
my $tmpdir = File::Spec->tmpdir();
print "$tmpdir\n";
my $cachedir = File::Spec->catdir($tmpdir, 'host1', 'user1', 'host2', 'user2');
print "$cachedir\n";