Path: utzoo!utgpu!jarvis.csri.toronto.edu!clyde.concordia.ca!uunet!mcsun!sunic!dkuug!harald.ruc.dk!jba From: jba@harald.ruc.dk (Jan B. Andersen) Newsgroups: comp.unix.questions Subject: Reply to question on 'find p* ...' Message-ID: <203@harald.UUCP> Date: 16 Jan 90 17:32:54 GMT Organization: RUC - Roskilde University Center, Denmark Lines: 12 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.....