TheNewbie81
Technical User
hi,
why in perl does this return what i want:
system(qq[find $DIR -name "file" -exec ls {} \\;]);
but this returns nothing?
qx{find $DIR -name "file" -exec ls {} \\;};
where $DIR = directory read in from input.
Its bugging me!!
why in perl does this return what i want:
system(qq[find $DIR -name "file" -exec ls {} \\;]);
but this returns nothing?
qx{find $DIR -name "file" -exec ls {} \\;};
where $DIR = directory read in from input.
Its bugging me!!