The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
5answers
141 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] ...
1
vote
3answers
97 views

AWK :Extract columns from file: Rows have variable columns

I have a text file in the following format. Each row has variable number of columns. File: gi|269201691|ref|YP_003280960.1| chromosomal replication initiation protein ...
0
votes
4answers
532 views

awk script for finding smallest value from column

I am beginner in AWK, so please help me to learn it. I have a text file with name snd and it values are 1 0 141 1 2 223 1 3 250 1 4 280 I want to print the entire row when the third column value is ...
1
vote
1answer
166 views

Manipulate a CSV file using AWK

I am new in awk and I was asked to format the following csv file (where each row stands for a day with values for each hour) ...
1
vote
2answers
447 views

awk split field format

awk '{split($2,a,"-")}; {if ($1=="aa") {print "'$var'/"$1"/"a[1]"/"$2" '$var'/bb/"a[1]} else {print "'$var'/"$1"/"a[1]"/"$2" '$var'/aa/"a[1]}}' hi, $2 is all lower case text. I have ...
0
votes
2answers
255 views

awk print string without fixed width formatting?

Is there a way to have awk not print a fixed width column? For example: "9", "TAYLOR TOWER, JACOB B. " "9", "UNIVERSITY HOSPITALS-EAST" "AR", "SCHOTTENSTEIN CENTER " "B1", "NEWARK RESIDENCE ...