I'm not understanding how the backticks operator is working in ActiveState.
How can I execute $cmd so that it "works" as I intend?
foreach ( 7100 .. 7114 ) {
my $path = File::Spec->catdir( $topdir, "$_/hosted/docs/cdm4/msoff
+ice" );
my $cmd = "rmdir /s /q $path";
print "$cmd \n";
print `$cmd` . "\n";
}
Some output shows that it is doing something funny to the /s and /q cmdline options of rmdir.
rmdir /s /q D:\sites\cust\7112\hosted\docs\cdm4\msoffice
rmdir: failed to remove `/s': No such file or directory
rmdir: failed to remove `/q': No such file or directory
rmdir: failed to remove `D:\\sites\\cust\\7112\\hosted\\docs\\cdm4\\ms
+office': Directory not empty
I'm running:
D:\z>perl -v <br>
This is perl, v5.10.0 built for MSWin32-x86-multi-thread
-------------------------------------
Nothing is too wonderful to be true
-- Michael Faraday
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.