Reply to question on 'find p* ...'
Jan B. Andersen
jba at harald.ruc.dk
Wed Jan 17 04:32:54 AEST 1990
My reply (by mail) bounced with
554 usdtsg.UUCP!musson... Host usdtsg not known within the UUCP domain
>when I do a 'find p* -mtime +1 -print' in a directory with a large number of
>files starting with 'p', I get find: too many arguments.
The first argument to find(1) must the starting directory. Assuming that
you want to find *only* those files starting with 'p' in the current
directory use the command
% find . -name 'p*' -mtime.....
More information about the Comp.unix.questions
mailing list