![]() |
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 |
| Perl: Search for string on line then search and replace text | Crypto | Shell Programming and Scripting | 4 | 01-04-2008 10:24 AM |
| Search for a pattern from the result of search | boopathi_d | Shell Programming and Scripting | 3 | 12-05-2007 09:54 AM |
| Search for \n | Chanakya.m | Shell Programming and Scripting | 6 | 07-19-2006 06:57 AM |
| Advanced Search Problems.. Search by User Name | Neo | Post Here to Contact Site Administrators and Moderators | 1 | 05-19-2003 12:28 AM |
| Search using sed | Ohji | UNIX for Dummies Questions & Answers | 1 | 08-14-2001 10:21 AM |
|
|
LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
||||
|
Search with $*
Hi,
Using grep, I'm searching for words in a file filled with an entire dictionary. When the script is run, the user passes a series of letters as arguments which help determine which words they are looking for. I was wondering if I could search for them using $*. I'm currently using this command statement, and then using a for loop to find only the words with the character arguments sent by the user. grep '[a-z][a-z][a-z][a-z][a-z][a-z]' dictionary > results Could I use something like this instead? Ex. grep '[$*][$*][$*][$*][$*][$*]' which if say the arguments were a, b and c... would it translate to: ex. grep '[abc][abc][abc][abc][abc][abc]' dictionary > results ??? thanks Jason |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|