Awk is a pattern matching language that can be used both in shell scripting and for standalone programs.
0
votes
2answers
21 views
How to add a plus sign in a file
I have a file like the follwing
5.0000000000E-02 5.0000000000E+00 4.1000000000E-01 -4.8481128146E+01
1.5000000000E-01 5.0000000000E+00 4.1000000000E-01 -4.6562934242E+01
2.5000000000E-01 ...
1
vote
2answers
30 views
Replace lines that matches two patterns
Hi i am writing shell script in which i have to replace status O to B by referring two parameters as follows
1. trng-linx | 17.2.18. | change status to O to P in project tasklist | O | 1m
2. ...
4
votes
3answers
35 views
Find a Value in a column found remove the entire row
below is my input file, input.txt
Value Value1 value2
5 1 2
1 4 3
2 1 5.5
0 0 0
4 1 0
I need to search the value(5.5) in the ...
0
votes
0answers
67 views
awk way of handling large numbers
When I try to put below code in command line options it works, but when I put this split in a function and then I give print in end it does not work.
$1 is date $2 time and format is as below, ...
3
votes
3answers
55 views
Linux/Unix bash basic script awk/sed
I'm working on bash script.
var=$(ls -t1 | head -n1);
cat $var | sed 's/"//g' > latest.csv
cat latest.csv | sed -e 's/^\|$/"/g' -e 's/,/","/g' > from_epos.csv
echo "LATEST: $var";
Here's the ...
0
votes
4answers
46 views
Replacing IP with server name in fping output
I have a txt with a list of IP that I would like to check using fping, and then translate IP into name.
My file (hosts.txt) looks like this:
192.168.1.1 serverA
192.168.1.2 serverB
...
1
vote
3answers
31 views
Using awk to parse through two files ignoring values
I have two files and am trying to make a third. In fileA, I have a static list of numbers. In fileB, I have a static list of numbers as well. I'd like to use awk to take the numbers from fileB, parse ...
1
vote
3answers
40 views
Save variable from txt using awk
I have a txt in my folder named parameters.txt which contains
PP1 20 30 40 60
PP2 0 0 0 0
I'd like to use awk to read the different parameters depending on the value of the first text field in ...
0
votes
0answers
51 views
create poem in shell with sed or awk or [closed]
i work with text in my text are poem i want insert my poem in a specific tag for example this is a poem :
AAAA
BBBB
CCCC
DDDD
i want insert above text in these tags :
<br/><div ...
3
votes
3answers
77 views
Replace lines by line number with lines from other file
I'm searching for an elegant way to replace a block of lines in ASCII-file1 with all lines of file2 beginning with the 2nd line. The lines to be replaced in file1 are encapsulated within blank line ...
0
votes
3answers
41 views
awk - join last column with next line first column
I want to join last column of the line with the next line first column. For example:
cat FILE
12 15
22 25
32 35
42 45
to join like this:
15 22
25 32
35 42
15 (last column) joined with 22 ...
4
votes
5answers
81 views
What is platform independent way of converting csv files to tsv files if the csv files can be quoted with comma inside the quoted strings?
Suppose I have a csv file like this
a,b,c
1,"drivingme,mad",2
and I want convert it to a TSV
a<tab>b<tab>c
1<tab>drivingme,mad<tab>2
Whilst I can write some Python code ...
0
votes
3answers
40 views
printing lines using awk which have more than 3 space-delimited words?
I have a file containing lines of sentences. I want to print all lines that have more than 3 words. Words are separated by whitespace.
How could I do this with awk?
1
vote
1answer
39 views
Fetching all those text that match a pattern using shell
html file that i have to read line by line. I then need to run a script that matches some class attribute of span tag and then returns the text enclosing the span and the line number on which it ...
4
votes
5answers
63 views
Quotation mark into .csv (per field) AWK/SED
I've got csv file like
Brand,Type,Color
Porsche,Sport,Red
BMW,Coupe,Blue
I'd like to include quotation marks to have it like:
"Brand","Type","Color"
"Porsche","Sport","Red"
"BMW","Coupe","Blue"
...
4
votes
2answers
57 views
Calculate the value with awk from two files
My original observations look like that:
name Analyte
spring 0.1
winter 0.4
To calculate p-value I did bootstrapping simulation:
name Analyte
spring 0.001
winter 0
spring 0
winter 0.2
spring ...
0
votes
4answers
63 views
CSV files - merging, if column with same value do: [duplicate]
I'm working on the integration of 2 CSV files.
Files are made by the following columns:
First .csv:
SKU | Name | Quantity | Active
121 | Jablko | 23 | 1
Another .csv consists following:
SKU | ...
1
vote
3answers
42 views
awk gsub replacing a string having double quotes
I have a huge XML file with longer lines (5000-10000 characters per line) with following text:
Pattern="abc"
and I want to replace it with
Pattern="def"
As the line sizes are huge, I have no ...
4
votes
7answers
103 views
How to find files containing exactly 16 lines?
I have to find files that containing exactly 16 lines in Bash.
My idea is:
find -type f | grep '/^...$/'
Does anyone know how to utilise find + grep or maybe find + awk?
Then,
Move the matching ...
0
votes
0answers
40 views
How to filter UID which has request and response in log file [duplicate]
I want to find out the unique uids from a log file which have request and response.
Each UID is linked with request and response, if the requests gets completed successfully the reponse will come ...
2
votes
2answers
53 views
find file names by searching the last lines for pattern
I have to find all files in a large number of large ASCII files which contain a specific pattern. At the moment I'm doing that with
grep -l <pattern> <files>
and it's very slow.
But I ...
0
votes
3answers
61 views
awk define field pattern
Im looking for a way to split the following text into appropriate columns with awk.
I have
[2013-06-17 13:30] [PACMAN] Running 'pacman -S cups'
[2013-06-17 13:30] [PACMAN] reinstalled cups ...
1
vote
2answers
41 views
sed removing spaces before and after something
I'm wondering how to make mass rename (using rename or sed/awk), for files like this:
Name 1 - Name 2 - Name 3.doc
Name 1- Name 2 - Name 3.doc
Name 1 -Name 2 - Name 3.doc
the problem is that i want ...
3
votes
2answers
48 views
Awk two step extraction
I'm trying to extract data from a text file with the following structure:
Employee: John C.
2013-01-01 10 $123
2013-01-02 12 $120
2013-01-03 8 $150
Employee: Michael G.
2013-01-01 5 ...
2
votes
4answers
65 views
How to extract URL from html source with sed/awk or cut?
I am writing a script that will download an html page source as a file and then read the file and extract a specific URL that is located after a specific code. (it only has 1 occurrence)
Here is a ...
2
votes
7answers
96 views
Trying to print matching regex in an awk program
i'm very new at awk and have been banging my head trying to get this to work. I'm trying to take a list of files in "image.list" and create an "info" file out of it. I need to grab the string ...
2
votes
1answer
51 views
bash script to get command values in two files and write is a pattern to new file
Bash script to get command values in two files and write is a pattern to new file
Need bash script to find common values in two files and write it to new file in certain pattern. I can get the common ...
1
vote
3answers
68 views
I need only two fields info using lastlog and grep (or awk) in the bash
The command lastlog returns four fields such as Username, Port, From and Latest.
For example.
$ lastlog
Username Port From Latest
root ...
0
votes
1answer
46 views
Limiting results from grep of a exim log
I'm trying to write a little shell script to run once a hour and return all the users and IP's that have sent emails in the past hour so I can look for any compromised accounts.
I'm getting the data ...
2
votes
7answers
91 views
How to remove duplicate words that end with different punctuation?
Let's say I have a file with the following contents:
VSDmaMapInfo
VSDmaMapInfo::
VSDmaMapInfo;
VSPortErr
VSPortErr,
VSPortErr::
and after sorting I wanted the output to be
VSDmaMapInfo
VSPortErr
...
-1
votes
2answers
56 views
Wrong formatting when using print in awk
I have a 2 column file that come from http://snap.stanford.edu/data/cit-HepPh.html. The file I downloaded is cit-HepPh.txt.gz. I delete all characters that are not numbers (the first 4 lines of the ...
2
votes
3answers
45 views
Common values in 2 columns in 2 files
Suppose I have these 2 tab delimited files, where the second column in first file contains matching values from first column of the second file, I would like to get an output like this:
FileA:
1 ...
-2
votes
1answer
44 views
how to call awk on excel in perl
I am trying to use variable or system command to call an awk (dealing with csv file)
the awk command is
awk -F "\"*,\"*" '{if (\$6 == " ADMCHG") print \$0}' $output_dir/$userfile > ...
2
votes
3answers
53 views
How to add a column from a file to another file
I have a file with two columns as
1 1
2 3
3 4
and a file with one column as
6
7
9
I would like to add the second file in the first one. The output should be:
1 1 6
2 3 7
3 4 9
0
votes
2answers
73 views
bash script unable to get the variable
On command line this works like this:
svn log "$src_url" --stop-on-copy \
| awk -v RS="--+" -F'|' ' /ticket-101/{print $1}' \
| grep "^r" \
| cut -d"r" -f2 \
| cut -d" " -f1
Output:
6359
...
1
vote
3answers
104 views
Grep word in one file, and use that word to match in FASTA file, adding the FASTA sequence to the first file
I want to grep several words in file1, and use each word to grep what follows after its match in file2.fasta. And then I want to add the thing that followed the match to the word I used into file03, ...
1
vote
3answers
51 views
AWK command to print until end of line
I have a quick question regarding the AWK command. I need the command to print until the end of the line on the same line, but then when it gets to the next line I need it to print on another line. ...
4
votes
4answers
73 views
If the last colum is equal “R” then… Is it possible? In unix
I need to find the last column from a variable that contains some fields. i need to write something like:
if [ #the last column = "R" ];
then
value=`echo "'$value'"`
fi
Is it ...
2
votes
2answers
61 views
want to change csv file date column format
Im newbie to batch/shell scripting. I have a CSV file like this:
Id depId Name city Date prod
12345 52845 ken LA 08.08.2013 16:06:53 KLS22
25685 28725 Larry MA ...
1
vote
3answers
73 views
how to extract text which matches particular fields in text file using linux commands
Hi below is my text file
{"Author":"john"
"subject":"java"
"title":"java cook book.pdf"}
{"title":"Php book.pdf"
"Author":"Smith"
"subject":"PHP"}
{"Author":"Smith"
"title":"Java book.pdf"}
...
5
votes
2answers
48 views
awk statements - if not found (grep'ed) do
My table file example looks like that
Name1 xxxxx 34
Name1 xxxxx 37
Name2 aaaaa 59
Name2 xxxxx 90
Name4 Name3 12
Name file looks like that
Name1
Name2
Name3
Name4
I want awk ...
2
votes
4answers
35 views
Moving the second column to first column using awk
I would like do the following using awk:
Example of my input data with four columns and a number of rows:
10 20 30 40
50 30 60 80
90 12 40 20
Desired output:
10 20
30 40
>
50 30
60 80
>
...
1
vote
2answers
48 views
Remove lines from AWK output
I would like to remove lines that have less than 2 columns from a file:
awk '{ if (NF < 2) print}' test
one two
Is there a way to store these lines into variable and then remove it with xargs ...
4
votes
3answers
51 views
sed: remove strings between two patterns leaving the 2nd pattern intact (half inclusive)
I am trying to filter out text between two patterns, I've seen a dozen examples but didn't manage to get exactly what I want:
Sample input:
START LEAVEMEBE text
data
START DELETEME text
data
...
0
votes
4answers
70 views
Adding delimiters to CSV column
I need help writing a script that will add : between two characters in a single column csv file. Based on my research awk looks like the tool I need but I am stuck trying to merge two solutions and I ...
2
votes
2answers
58 views
How does Bash's IFS variable affect command substitution?
I am writing a bash script that loops over the output of a command substitution and then tries to perform another command substitution within the loop body. Here is the code:
#!/usr/bin/bash
...
0
votes
5answers
62 views
Append space and \ character to each line, except the last
I am working on a bash script where ipset (an iptables extension) requires CIDR formatted entries to have "[single space]\" appended to the end of each CIDR line for input into the set. For example ...
-2
votes
2answers
76 views
I want to see a if a file contains any sentence using grep or perl [closed]
I have a large directory of files to look through on my desktop and I need to determine if any of the files contain English sentences. Is there an easy way to do this using grep or perl?
so grep ...
0
votes
2answers
43 views
awk subsetting on ID's in $1 and close( )
I am trying to sort with awk a large csv file by id's in the first column on OSX.
I started with:
awk -F, 'NR>1 {print > ($1 ".sync")}' file.csv
However, the process stopped at ID s_17 with ...
5
votes
2answers
127 views
Calculate time based metrics(hourly)
How would I calculate time-based metrics (hourly average) based on log file data?
let me make this more clear, consider a log file that contains entries as follows: Each UIDs appears only twice in ...




