mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-07 02:28:35 +00:00
14 lines
192 B
Perl
14 lines
192 B
Perl
|
#! /usr/bin/env perl
|
||
|
# -*- mode: perl; -*-
|
||
|
|
||
|
# How to use:
|
||
|
|
||
|
use File::Temp tempdir;
|
||
|
|
||
|
my $template = "$ARGV[0]/AbC_XXXXXX";
|
||
|
my $res = tempdir($template, CLEANUP => 0);
|
||
|
|
||
|
print "$res";
|
||
|
|
||
|
exit(0);
|