![]() |
|
Do you know where your variables are? | |
PerlMonks |
Re: drive space script dies on certain characters...by gwhite (Friar) |
on Jan 18, 2005 at 17:08 UTC ( #423097=note: print w/replies, xml ) | Need Help?? |
@dirs=`find $partName -mount -type d | xargs du -sk`;
you might try putting double quotes around the $partName, looks like a syntax error from find something like (but totally untested). @dirs=`find "$partName" -mount -type d | xargs du -sk`;
g_White
In Section
Seekers of Perl Wisdom
|
|