10 More Discussions You Might Find Interesting
1. Shell Programming and Scripting
sorry I messed up the last post with too many mistakes and corrections so I closed it and opening a new one which should be clear to everyone .my apologies to the admins.
I am using sun solaris and Linux , what I want is SED to print any string (or output it to a file preferably) that does... (2 Replies)
Discussion started by: boncuk
2 Replies
2. UNIX for Dummies Questions & Answers
I would like to parse two strings from lines in a file only when both strings appear on the same line. For example, if I have the following line:
string1 string2 string3 string4 string5 string6 string7 string8 string9
I would like the output to be:
string2: string7
Can someone give me... (5 Replies)
Discussion started by: ARBlue79
5 Replies
3. Shell Programming and Scripting
Heya,
I'm currently working on a script so I can see which cron jobs, if any, on a system are executing less frequently than 15 minutes (1 - 14 minutes). This is the only data I'm interested in. So far I have the following:
#!/bin/bash
IFS=$'\n';for line in `ls -f /var/spool/cron/*`;
do... (5 Replies)
Discussion started by: Elvirnith
5 Replies
4. Shell Programming and Scripting
Hello guys,
I guess you are fed up with sed command and parse questions, but after a while researching the forum, I could not get an answer to my doubt. I know it must be easy done with sed command, but unfortunately, I never get right syntax of this command
OK, this is what I have in my... (3 Replies)
Discussion started by: manolain
3 Replies
5. Shell Programming and Scripting
What is the shortest & right way to remove the string "" with a sed statement ?
echo 'whateverwhatever' | sed ........
? :) (2 Replies)
Discussion started by: ctsgnb
2 Replies
6. Shell Programming and Scripting
All,
Can somebody provide me with some sed expertise on how to parse the
following line.
27-MAR-2011 10:28:01 * (CONNECT_DATA=(SID=dmart)(CID=(PROGRAM=sqlplus)(HOST=mtasnprod1)(USER=mtasnord))) * (ADDRESS=(PROTOCOL=tcp)(HOST=10.197.7.47)(PORT=54881)) * establish * dmart * 0
I would like... (3 Replies)
Discussion started by: BeefStu
3 Replies
7. Shell Programming and Scripting
I want to delete corrupt records from a file through awk or sed.
Can anyone help me with this
Thanks
Striker
Change subject to a descriptive one, ty. (1 Reply)
Discussion started by: Rahul_us
1 Replies
8. Shell Programming and Scripting
i have file in the following format
*RECORD*
*FIELD NO*
123456
*FIELD TX*
this is a sample entry
*FIELD SA*
See Also
*FIELD RF*
References
*FIELD CS*
Clinical Symptoms
*FIELD AV*
Allelic Variants
*FIELD EH*
Edit History
*RECORD*
*FIELD NO*
123456 (1 Reply)
Discussion started by: dunstonrocks
1 Replies
9. Shell Programming and Scripting
I'm having a problem with a sed script.
A programmer needs to change columns 942,943,944 to blank spaces only where it has the number 999 in every line.
I didn't have a copy of the data file to test with originally so made my own up with a bunch of x's and put 999 in columns 5-7. The sed... (1 Reply)
Discussion started by: gravy26
1 Replies
10. Shell Programming and Scripting
hi , i would like to parse some file with the fallowing data :
data data data "unwanted data" data data "unwanted data"
data data data data #unwanted data.
what i want it to have any coments between "" and after # to be erased using awk or/and sed.
has anyone an idea?
thanks. (3 Replies)
Discussion started by: Darsh
3 Replies