1
vote
2answers
54 views

awk script to process 400 .txt files

I have a nice .awk script that takes the 2nd $2 value and prints it. Because the data in the .txt files only go down 8192 lines, any lines after that are irrelevant (the script takes care of that.) I ...
1
vote
2answers
17 views

Unix utility to finish this term frequency counter pipeline

Right now I have to write a little script that takes a directory of documents(the example given is each chapter in Revelation) and turn them into a term frequency document. So far, I have: foreach ...
2
votes
2answers
59 views

Bash: Spliting string based on some delimiter and storing each in a variable

113050050/CS101/mysql_java.pdf the above is my string, which is stored in a variable 'line' line="113050050/CS101/mysql_java.pdf" Now I want to split $line based on delimiter / and store each ...
0
votes
1answer
58 views

Revising an one liner [closed]

I've cobbled together a one-liner so I can quickly find any drives that have medium errors on a server. This is like so: /var/lib/einarc/tools/adaptec_arcconf/cli getlogs 1 device tabular | egrep ...
0
votes
1answer
33 views

awk: add a line if missing

I've an awk script which processes .ICS calendar files. I need to add the ATTENDEE line if it's missing. I already have a script which parses all the events taking in considerations only the ones I ...
-3
votes
3answers
126 views

Calculate how many lines in file contain the specific word using awk command [closed]

So, I need to write a bash script that asks for a word and file name and then tell how many lines contain that word, using awk command. Any thoughts?
2
votes
3answers
172 views

Get string between two special characters

How do I sed, grep, awk, tr or whatever in a bash script to get the first occurrence per line of the characters between ' and . from this file. (The character is a single quote and a ...
1
vote
5answers
105 views

Print first N words of a file

Is there any way to print the first N words of a file? I've tried cut but it reads a document line-by-line. The only solution I came up with is: sed ':a;N;$!ba;s/\n/δ/g' file | cut -d " " -f -20 | ...
0
votes
1answer
71 views

Adding double quotes to last field of ls command output

I was writing a shell script , where it will look for files(ZIP) in a directory using ls command and unzip them in destination , the problem is that the file name is having spaces between ,so when ...
1
vote
2answers
69 views

Using awk with Operations on Variables

I'm trying to write a Bash script that reads files with several columns of data and multiplies each value in the second column by each value in the third column, adding the results of all those ...
1
vote
1answer
70 views

Awk: merging columns from files

I have two files, and I have to take columns I need from both files and merge them together. I'd like to use awk to do this. So from FileB I need $9->$12. If $4 of FileA matches what is in $12 of ...
0
votes
1answer
46 views

input file isn't being read correctly scripting awk

Hi I have two input files. input1.txt: id above id below id still id getting input2.txt id above value above the sky id below value under the chair im trying to do an awk command and it shows ...
1
vote
1answer
56 views

search 2 files and output the common and print an extra line unix scripting

I have this code, but it's giving me an error awk ' FNR == NR { # reading get_ids_only.txt values[$1] = "" next } BEGIN { # reading default.txt for (elem in values){ if ...
0
votes
2answers
116 views

compare 2 files, delete uncommon strings scripting

I have two files. 1 file has selected the input and parameters the other has all the parameters and definitions example file1.txt message id: "close" message id: "open" message id: "down" ...
0
votes
5answers
118 views

Bash: how to change first column of a file and only the first column

I have a file that was screwed up by a program and now every line looks something like this: somelongstring:number number number number ... a lot more columns (Tab delimited) What I need ...
1
vote
4answers
64 views

Text manipulation with vim (or maybe shell)

I have one file full with records like this: "Full name","URL-style name","key_1a","key_2a" "Full name","URL-style name","key_1b","key_2b" "Full name","URL-style name","key_1c","key_2c" ... I have ...
0
votes
2answers
45 views

Scripting: How to put together lines from files based on matching column?

I have two files with lines like this: File A: TCONS_00000007 ENSMUST00000044158 gene:ENSMUSG00000041560 433/463 0.0 364.0 TCONS_00000009 ENSMUST00000044158 gene:ENSMUSG00000041560 1051/1122 ...
0
votes
3answers
63 views

regular expression match and extraction string

I have a string containing content as "Profile - -Server-FAILUre-tESt Exception Type - timeOverThreshold Description - High CPU eHealth Alarm ID - 1000001" i need to extract string after word ...
0
votes
2answers
62 views

Regular Expression match and extraction

I am writing a shell script where in I need some help in matching and extracting pattern ALARM_TYPE contain string 'Exception Type - timeOverThreshold Description - High CPU eHealth Alarm ID - ...
1
vote
3answers
110 views

pass bash variable as value of awk parameter

I am not sure exactly how to phrase this question, so please rephrase if you'd like. I would like to take something like var="one two three" echo $var | awk "{print $2}" and replace the $2 ...
0
votes
4answers
96 views

add new line after number of commas

I have this long line: ...
1
vote
5answers
146 views

splitting single line into multiple line in numbering format using awk

I'm trying to split the value using awk command into three parts. Need help to break into 3. Content = 1. 11683 (<server01>: du.size[/,free] : 0.5 % 2. 21683 (<server02>: du.size[/,free] ...
0
votes
2answers
128 views

Search String using Shell Awk

I have a string: The disk 'virtual memory' also known as 'Virtual Memory' has exceeded the maximum utilization threshold of 95 Percent. I need to search every time in this string word The disk and ...
0
votes
3answers
316 views

Awk or Sed: Replace text between special characters (delimiters)

I do some research on how to replace text between delimiters, but because of lack knowledge in awk and sed I couldn't adjust command for my problem. The most similar question I found here, but after ...
1
vote
4answers
131 views

Using sed or awk to delete slash from fields

I'm trying to remove any slashes between any | between \ \ which include a name' 10.46|5060|100002366551140|\WAPNER| M\ |100002366551750 Desired output 10.46|5060|100002366551140|WAPNER M ...
0
votes
1answer
67 views

Linux command to generate file on server if pinged server is down, and a different file if it's up

Okay, slightly strange/specific question, but I have a command on linux to ping a server 3 times, and return the number of successful replies ping -c 3 google.com | grep 'received' | awk -F',' '{ ...
0
votes
2answers
107 views

awk print from mysql dump file

I'm trying to extract data from mysqldump file, its a very big file, restoring it to database will take days, I'm trying to use sed or awk to extract data as the following INSERT INTO ...
2
votes
2answers
96 views

shell script using awk

Having troubles with awk. Basically what I'm trying to do is search for this particular string in the file. And then print the 3rd element of that line. Here's what I did: awk -F' / ' ...
4
votes
5answers
134 views

awk with quotes and spaces in bash script

I've the following output in a bash variable set from a received snmp trap: echo $var Nov 27 16:20:34 witness logger: trap: vars: DISMAN-EVENT-MIB::sysUpTimeInstance = 0:6:10:29.06, ...
1
vote
6answers
505 views

shell scripts how to replace string between 2 characters in all lines start with specific string?

I have a text file like below, I want to replace the old string between 2 characters(in this case is ^ and |) with new string (in this case will be replaced to old string ^ old string)if the line ...
0
votes
3answers
149 views

grep from a log file to get count

I have to get certain count from files. The grep statement i am using is like this : counter_pstn=0 completed_count_pstn=0 rec=0 for rec in `(grep "merged" update_completed*.log | awk '{print $1}' | ...
4
votes
5answers
649 views

Unix join on multiple fields on two files [closed]

I have a two files cat test1.txt 1|2|3|4 2|3|4|4 3|4|5|5 cat test2.txt 1|2|4|5 2|3|5|6 3|5|7|7 My output should be 1|2|3|4|4|5 2|3|4|4|5|6 Its like joining two files on fields 1 and 2 ...
1
vote
0answers
76 views

awk and file encodings [closed]

This is a follow up question to a previous post. See properties file search and replace for some back history. Basically, I need awk to read files which have a charset like this: ...
1
vote
2answers
119 views

Using record separators in awk

I have $ cat awktestf a++ b++ c++ I am doing and I get cat awktestf | awk 'BEGIN { RS="++" ; OFS="@"; ORS="()" } { print $0 } END {print "I am done" }' a() b() c() ()I am done()abc@abc:~$ My ...
1
vote
5answers
269 views

Sum numbers each 80 lines one line awk

I have a very large text file that's a vector of numbers, and I would like to add 80 lines together, print the result in a new file, then take the second 81-160 lines, add them up and print the result ...
-1
votes
3answers
77 views

how to print user1 from user1@10.129.12.121 using shell scripting or sed

I wanted to print the name from the entire address by shell scripting. So user1@12.12.23.234 should give output "user1" and similarly 11234@12.123.12.23 should give output 11234
0
votes
4answers
487 views

search multiple pattern in file and delete line if pattern matches

For ex, a file contain contents: 10.45.56.84 raj 10.49.31.81 mum 10.49.31.86 mum 10.81.51.92 guj 10.45.56.116 raj 10.45.56.84 raj I want to search 10.45.56.84 and 10.81.51.92 in the above file and ...
1
vote
4answers
959 views

Shell script to find & replace value in xml

I have a xml config file called config.xml: <?xml version="1.0" encoding="UTF-8"?> <config> <server-ip>192.168.1.45</server-ip> ...
-1
votes
3answers
73 views

How to replace 3rd column given that first two column match

This is what I am trying to achieve: file1: test fileb 4578; test filec 7689; test filey 9978; test filez 12300; file2: test fileb 1; test filec 2; test filey 3; file1 becomes: test fileb 1; test ...
0
votes
1answer
406 views

AWK: Compare two CSV files

I have two CSV files and I want to compare them using AWK and generate a new file. file1.csv: "no","loc" "abc121","C:/pro/in" "abc122","C:/pro/abc" "abc123","C:/pro/xyz" "abc124","C:/pro/in" ...
3
votes
2answers
119 views

Using awk extracting fields from line starting at 2nd field in for look

My current code: for i in {0..5}; do rate[${i}]="`echo $line| awk -v par=$i '{par=par+2}{print $par}'`" done Extracts each field, starting from the 2nd and puts it into array. Please ...
0
votes
2answers
135 views

In bash updating file every hour if the last line is changed

I have a data file which I parse for date and value every once every hour. So today I would have date=30 AUG 2012 and value=10. Then I want to append new file with this date and value only if the date ...
0
votes
4answers
121 views

unix bash - extract a line from file

need your help!!! I tried looking for this but to no avail. How can I achieve the following using bash? I've a flat file called "cube.mdl" that contains: [...] bla bla bla bla lots of lines above ...
-1
votes
1answer
91 views

Recommendation - Resource/book/pocketbook on regex in SED [closed]

Good day, I typically write rather simple BASH scripts on a routine basis. I can get the majority of my tasks done via cut, echo, sed, and other command-line applications for parsing text, lists, ...
1
vote
3answers
2k views

Using sed, Insert a line below (or above) the pattern?

I need edit a good number of files, by inserting (2) lines either right below a unique pattern or above it. please advise how to do it using sed, awk, perl or anything else in shell. thanks some ...
3
votes
3answers
352 views

How can I write this sed/bash command in awk or perl (or python, or …)?

I need to replace instances of Progress (n,m) and Progress label="some text title" (n,m) in a scripting language with new values (N,M) where N= integer ((n/m) * normal) M= integer ( normal ) The ...
0
votes
2answers
341 views

SED: combining select fields from multiple lines into one line

I have files in the form: random stuff more random stuff, etc more random stuff, etc 05201206 field1 field2 field3 field4 field5 05201212 field1 field2 field3 field4 field5 05201218 field1 ...
2
votes
2answers
2k views

AWK extract columns from file based on header selected from 2nd file

I have the following problem that I want to solve in awk. I have one large text table, comma separated, consisting of 100k rows and 5k cols. The first row is a header and the first column is a record ...
0
votes
2answers
182 views

How to parse a report using Shell script?

I have a command line program that prints out a report such as: I found 0 problems on your database, 0 problems were found on your database and so on. I would like to write a linux shell script ...
1
vote
2answers
121 views

Parsing text file lines

I have a log file that contains, among other data, lines like these: 2012-05-23T20:52:11+00:00 heroku[router]: GET myapp.com/practitioner_activities/10471/edit dyno=web.2 queue=0 wait=0ms ...

1 2 3 4