in reply to Re: stat function used with linux find gives me no data
in thread stat function used with linux find gives me no data
Thank you. At first I tried:
$output = chomp($_);
That didn't work. So I found, from the online documentation, how to properly use chomp(). I tried:
$output = $_; chomp($output);
... and it worked!
Thank you, also, for those other suggestions. I will also give File::Find, File::Find::Rule and Path::Tiny a try soon.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: stat function used with linux find gives me no data
by hippo (Archbishop) on Oct 13, 2022 at 12:44 UTC | |
|
Re^3: stat function used with linux find gives me no data
by NERDVANA (Priest) on Oct 13, 2022 at 23:04 UTC |