![]() |
|
|
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 |
| Development Releases: Linux Mint 4.0 Beta "Fluxbox", 4.0 Alpha "Debian" | iBot | UNIX and Linux RSS News | 0 | 01-04-2008 03:00 PM |
| Explain the line "mn_code=`env|grep "..mn"|awk -F"=" '{print $2}'`" | Lokesha | UNIX for Dummies Questions & Answers | 4 | 12-20-2007 01:52 AM |
| Error - "Too many words from '' " | i_priyank | Shell Programming and Scripting | 8 | 09-19-2007 03:31 AM |
| grep to find content in between curly braces, "{" and "}," | keshav_rk | Shell Programming and Scripting | 4 | 08-09-2007 11:14 PM |
| No utpmx entry: you must exec "login" from lowest level "shell" | peterpan | UNIX for Dummies Questions & Answers | 0 | 01-18-2006 04:15 AM |
![]() |
|
|
LinkBack | Thread Tools | Search this Thread |
Rating:
|
Display Modes |
|
|
|
||||
|
Is it possible to grep all words with the string "con" "Con" "CON" etc. etc. from a dictionary?
for instance "magic command 'con' dictionary" will spit out words such as Confluence, contended, inconceivable etc etc. I really need this! Thank you! |
|
||||
|
please define "inputfile"
Where is the input file that I am looking for? a dictionary most likely where is such a file on an ubuntu machine? I can look and install stuff, but i'd prefer to do this operation on ubuntu... |
|
|||||
See also Chris F.A. Johnson's Word Finder and Anagram Solver. |
|
||||
|
what packages are responsible for this file? or which packages supply additional dictionaries? please help me debug, i believe this is the fault of a nonexistant words file on my machine... ---- output of ls -al in /usr/share/dict Code:
guptaxpn@greentea:/usr/share/dict$ ls -al total 24 drwxr-xr-x 2 root root 32 2008-09-26 19:32 . drwxr-xr-x 266 root root 4096 2008-10-06 17:41 .. -rw-r--r-- 1 root root 199 2008-04-21 04:04 README.select-wordlist lrwxrwxrwx 1 root root 30 2008-09-26 19:32 words -> /etc/dictionaries-common/words guptaxpn@greentea:/usr/share/dict$ shell script Code:
guptaxpn@greentea:~$ more dict.sh #! /bin/bash dic=/usr/share/dict/words grep -i con "$dic" guptaxpn@greentea:~$ output of shell script Code:
guptaxpn@greentea:~$ ./dict.sh grep: /usr/share/dict/words: No such file or directory guptaxpn@greentea:~$ |
![]() |
| Bookmarks |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|