|
google site
|
|||||||
| Forums | Register | Blog | Man Pages | Forum Rules | Links | Albums | FAQ | Users | 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 !! |
![]() |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
BASH, HASH and AWK
Hi,
I am working on this idea that I want to process some information from a command dump. Using the dump I will search for a string. If it finds the string, it must post a different/associated string to output/logfile. Example: 'Find "cookie jar"' then 'echo "carpool/tomorrow" > logfile' It does not stop with 1 string to search for, it will have around 100 different strings to search for, and everyone have some other content assigned to it, thus it should be some clever loop. I COULD have written one grep for each value, but since it is growing by the day, I find that a waste of lines and bytes. To prevent an infinite loop, it should remove what it has already found from the sourcelist of what to search for or somehow mark it as processed. (The sourcelist is overwritten each time the PC boots with an updated one) The tricky bit for me is both how I can arrange it with a HASH table, I've done something similar in PERL, but in BASH/AWK I am unable to do this. The system is very limited and its not permitted toexpand on its available apps by any byte atm. I've drawn out how I think the design is going to work. In itself, there are several commands it will search the output for, but I am used to having a launch script, that then uses a "core search" script with the variables that designs it to that and that output file, predefined variables file and logfile. It gives control and scalabillity ;-) (The pink area is where the core script loops in itself to search for every available word) Is this hard to acomplish? I've written some BASH scripts in the past, aswell as some BATCH and PERL scripts, though nothing close to this complexity. |
| Sponsored Links | ||
|
|
|
#2
|
|||
|
|||
|
What I really need help with, is a script that searches for a changable string, if it finds it, we replace the output with the corresponding value/string. say if I have a datafile with this info(string to search for separated by a , with the output after it): Code:
data searchable string, this is for the output to be posted another searchable string, this is yet again for the output to be posted. third wonder searchable, this is another output string It would without a hitch with either ; or = or any other sign to separate the two, just so if the first is found, the second is posted. Any ideas? :-) |
|
#3
|
|||
|
|||
|
> The tricky bit for me is both how I can arrange it with a HASH table, I've done
> something similar in PERL, but in BASH/AWK I am unable to do this. Might not be exactly what you're looking for but... With regards to above, you could try this: Creating associative or hash arrays in bash using sed and strings without the use of arrays, looping and conditionals. You'll have to tweak that code for your tastes though to use different delimeters depending on what's appropriate to you. Regards, |
| Sponsored Links | ||
|
|
![]() |
| Bookmarks |
| Tags |
| awk, bash, find, grep, hash |
| Thread Tools | Search this Thread |
| Display Modes | |
|
|
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| how to make your bash script run on a machine with csh and bash | npatwardhan | Shell Programming and Scripting | 3 | 11-19-2008 03:17 AM |
| bash and ksh: variable lost in loop in bash? | estienne | Shell Programming and Scripting | 2 | 08-25-2008 02:09 PM |
| Print Entire hash list (hash of hashes) | Alalush | Shell Programming and Scripting | 1 | 08-06-2008 08:40 AM |
| passing variable from bash to perl from bash script | arsidh | Shell Programming and Scripting | 10 | 06-04-2008 12:25 PM |
| MD5 hash calculation | zedex | Programming | 4 | 02-24-2007 01:37 AM |