-----Original Message-----
From: ToddAndMargo [mailto:toddandma...@zoho.com]
Sent: Monday, July 17, 2017 8:19 PM
To: perl6-users <perl6-us...@perl.org>
Subject: zip mystery
Hi All,
This runs:
my $proc = run('zip', '-j', "$ZipLog", "$CimLog", "$LogFile",
"$DiagDir/BlankFile.txt", :out);
And this also works (bash)
zip -j eraseme.zip /opt/xxx/yyy/zzz/diags/*
But this does not:
my $proc = run('zip', '-j', "$ZipLog", "$CimLog", "$LogFile",
"$DiagDir/*", :out);
warning: name not matched: /opt/xxx/yyy/zzz/diags/*
What am I doing wrong?
Many thanks,
-T
On 07/17/2017 05:22 PM, Mark Devine wrote:
T,
What happens when you do this?
my $proc = run('zip', '-j', $ZipLog, $CimLog, $LogFile, $DiagDir ~ '/*', :out);
Mark
with $DiagDir ~ '/*'
warning: name not matched: /opt/Cimcor/CimTrak/CimTrakServer/diags/*