Hi,
I realized the find command constructor always places options before the path, which leads to the usual:
find: paths must precede expression:
The app generates this:
find -type f -mtime 2 /media/data1/
instead of:
find /media/data1 -type f -mtime 2
Hi,
I realized the find command constructor always places options before the path, which leads to the usual:
find: paths must precede expression:The app generates this:
find -type f -mtime 2 /media/data1/instead of:
find /media/data1 -type f -mtime 2