Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.5 % 3. 31683 (<server03>: du.size[/,free] : 3.5 %

I want the above content to break into 3 lines in a numbering system.

Sample output required :

1. 11683 (<server01>: du.size[/,free] : 0.5 % 
2. 21683 (<server02>: du.size[/,free] : 1.5 % 
3. 31683 (<server03>: du.size[/,free] : 3.5 %

I have tried by the following commands :

echo $content | awk -F"3. " '{ print $2 }' 

and i get

31683 (<server03>: du.size[/,free] : 3.5 %

Similarly for others, But still failed to get sample output in proper numbering format as shown above.

Can any one help me on this ?

share|improve this question

5 Answers

up vote 0 down vote accepted

You could use sed instead:

sed "s#[^^]\([0-9]\.\) #\n\1 #g"

Example:

[~/Desktop]
==> echo "1. 11683 (<server01>: du.size[/,free] : 0.5 % 2. 21683 (<server02>: du.size[/,free] : 1.5 % 3. 31683 (<server03>: du.size[/,free] : 3.5 %" | sed "s#[^^]\([0-9]
\.\) #\n\1 #g"
1. 11683 (<server01>: du.size[/,free] : 0.5 %
2. 21683 (<server02>: du.size[/,free] : 1.5 %
3. 31683 (<server03>: du.size[/,free] : 3.5 %
share|improve this answer
Thanks a lot... It works :-) – San Feb 13 at 6:07
@San - Glad I could help. If you don't find a more suitable answer, please accept this one by clicking the check mark next to it. – Daniel Haley Feb 13 at 6:23

The % symbol looks like a good candidate to split on. Try:

sed 's/% /%\n/g'

Testing:

echo "1. 11683 (<server01>: du.size[/,free] : 0.5 % 2. 21683 (<server02>: du.size[/,free] : 1.5 % 3. 31683 (<server03>: du.size[/,free] : 3.5 %" | sed 's/% /%\n/g'

Results:

1. 11683 (<server01>: du.size[/,free] : 0.5 %
2. 21683 (<server02>: du.size[/,free] : 1.5 %
3. 31683 (<server03>: du.size[/,free] : 3.5 %
share|improve this answer
your answer works perfectly :-) Thanks. – San Feb 15 at 5:28
@San: If it's what you're looking for, don't forget to accept it. Cheers. – Suicidal Steve Feb 15 at 6:07

Your data appears fixed in number of elements.

{
    print $1, $2, $3, $4, $5, $6, $7
    print $8, $9, $10, $11, $12, $13, $14
    print $15, $16, $17, $18, $19, $20, $21
}

Useful if you have to do anything with the data other than printing it.

share|improve this answer

try

echo "1. 11683 (<server01>: du.size[/,free] : 0.5 % 2. 21683 (<server02>: du.size[/,free] : 1.5 % 3. 31683 (<server03>: du.size[/,free] : 3.5 %" | awk '{n = split($0,array,"%"); for (i = 0; i < n-1; ++i){gsub("^ ","",array[i+1]);print array[i+1]" %",i}}'
share|improve this answer
Aren't you missing some data from the output? (the %) and have an unwanted leading blank for the last two lines? – Bill Woodger Feb 13 at 12:05
unwanted leading blank for the last two lines looks like last two are sub lines of first one.. – San Feb 15 at 5:27
Thanks for pointing that out, I didn't really test my code out. I've made changes, it works fine now – Aditya Sihag Feb 15 at 5:59
perl -pe 's/(\d+\.\s)/\n$1/g'

tested:

> echo "1. 11683 (<server01>: du.size[/,free] : 0.5 % 2. 21683 (<server02>: du.size[/,free] : 1.5 % 3. 31683 (<server03>: du.size[/,free] : 3.5 %" | perl -pe 's/(\d+\.\s)/\n$1/g'

1. 11683 (<server01>: du.size[/,free] : 0.5 % 
2. 21683 (<server02>: du.size[/,free] : 1.5 % 
3. 31683 (<server03>: du.size[/,free] : 3.5 %
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.