- or download this
open CMD, "/usr/local/bin/inotifywait |";
while (my $output = <CMD>) {
.......
}
- or download this
my @output;
while (my $line = <CMD>) {
chomp $line;
push @output, $line;
}
- or download this
for my $out (@output) {
if (condition exists) {
...
}
.....
}