![]() |
|
|
google unix.com
|
|||||||
| Forums | Register | Forum Rules | Links | Albums | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here. |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Find and replace problem | ali560045 | Shell Programming and Scripting | 5 | 06-25-2009 08:08 AM |
| Problem with find and tar | venu_nbk | UNIX for Dummies Questions & Answers | 2 | 11-20-2006 10:41 AM |
| problem with find | braindrain | Shell Programming and Scripting | 2 | 03-29-2006 01:33 PM |
| Problem with `find ...` | Cameron | Shell Programming and Scripting | 4 | 08-10-2005 08:24 AM |
| Another Find Problem | sethkor | Shell Programming and Scripting | 6 | 02-24-2005 07:56 PM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
||||
|
Code:
for index in `find /root -name *.jar | grep "/lib"`; do echo "$index"; done sometimes its throwing error saying find: paths must precede expression Usage: find [-H] [-L] [-P] [path...] [expression] some1 suggested me that : Code: for index in `find /technologies -name '*.jar' | grep "/lib"` do echo "$index" done my jar name dont have any spaces. but still it throwing Usage: find [-H] [-L] [-P] [path...] [expression] wats difference between '*.jar' and only *.jar wrt find command ? can some1 exaplin with example ? |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|