1
vote
4answers
34 views
help with selecting rows using awk
I have a file as follows
2.54 Ghz val
2.53 Ghz val1
1.6 Ghz val2
800 Mhz val3
2.54 Ghz val4
2.53 Ghz val5
1.6 Ghz val6
800 Mhz val7
and the pattern co …
1
vote
1answer
24 views
awk - how to specify field separator as binary value 0x1
Is it possible to specify the separator field FS in binary for awk?
I have data file with ascii data fields but separated by binary delimiter 0x1.
If it was character '1' it woul …
0
votes
1answer
18 views
Awk - print next record following matched record
I'm trying to get a next field after matching field using awk.
Is there an option to do that or do I need to scan the record into array then check each field in array and print th …
0
votes
7answers
149 views
Using Unix Tools to Extract String Values
I wrote a small Perl script to extract all the values from a JSON formatted string for a given key name (shown below). So, if I set a command line switch for the Perl script to id, …
0
votes
1answer
84 views
Script for changing the sequence number on a file name
I am writing a shell script and I am stuck. The requirement is: I will receive files which have a sequence number on them like xyz0001abcd.DAT. I create a copy of that file, keepin …
1
vote
6answers
95 views
how to use sed, awk, or gawk to print only what is matched?
I see lots of examples and man pages on how to do things like search-and-replace using sed, awk, or gawk.
But in my case, I have a regular expression that I want to run against a …
1
vote
8answers
99 views
Bulk Insert Code Before </body> Tag in 100 Files
I'd like to insert
<?php include_once('google_analytics.php'); ?>
before the closing body tag of about 100 php files. Unfortunately the person who made the site didn't m …
3
votes
6answers
1k views
Batch script to replace PHP short open tags with <?php
Hello everyone,
I have a large collection of php files written over the years and I need to properly replace all the short open tags into proper explicit open tags.
change "<? …
4
votes
7answers
286 views
How can I delete all /* */ comments from a C source file?
I have a C file which I copied from somewhere else, but it has a lot of comments like below:
int matrix[20];
/* generate data */
for (index = 0 ;index < 20; index++)
matrix[in …
6
votes
4answers
177 views
What is the difference between sed and awk ?
What is the difference between awk
and sed ?
What kind of application are best use
cases for sed and awk tools ?
0
votes
3answers
55 views
AWK: field separator contains a ‘+’
echo -n 'a001~!+rr001~!+1~!+TEST DATA 1' | awk 'BEGIN {FS="~!+"} {print $2}'
I have the field separator set to "~!+" and want to print the second field.
AWK prints an extraneous …
1
vote
2answers
47 views
awk script grouping with array
i am trying to execute awk script below on solaris but it's giving error like
awk: syntax error near line 3
awk: bailing out near line 3
where is error can you help me to fix it …
0
votes
4answers
81 views
How to detect EOF in awk?
Is there a way to determine whether the current line is the last line of the input stream?
3
votes
8answers
259 views
How can I delete a newline if it is the last character in a file?
I have some files that I'd like to delete the last newline if it is the last character in a file. 'od -c' shows me that the command I run does write the file with a trailing new l …
0
votes
2answers
52 views
How can I remove selected lines with an awk script?
I'm piping a program's output through some awk commands, and I'm almost where I need to be. The command thus far is:
myprogram | awk '/chk/ { if ( $12 > $13) printf("%s %d\n", …
