![]() |
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| command to find the files under particular owner | jayaramanit | UNIX for Dummies Questions & Answers | 2 | 08-22-2008 02:08 PM |
| Little bit weired : Find files in UNIX w/o using find or where command | jatin.jain | Shell Programming and Scripting | 10 | 09-19-2007 06:47 AM |
| awk command to find the count of files ina directory | sish78 | Shell Programming and Scripting | 11 | 07-19-2007 08:00 AM |
| Problem with files returned using Find command | dfb500 | UNIX for Dummies Questions & Answers | 3 | 12-12-2006 12:00 AM |
| Renameing files with the find command | Breen | Shell Programming and Scripting | 6 | 04-03-2002 06:51 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Actually, you should quote the -name pattern if it contains wildcards, otherwise it'll break if you have more than one match:
$ ls 345test567 768test234 $ find . -name *test* -print find: paths must precede expression Usage: find [-H] [-L] [-P] [path...] [expression] $ find . -name "*test*" -print ./768test234 ./345test567 $ |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|