Tagged Questions
1
vote
4answers
542 views
Transpose a File in unix
I have file something like this
1111,K1
2222,L2
3333,LT50
4444,K2
1111,LT50
5555,IA
6666,NA
1111,NA
2222,LT10
Output that is need
1111,K1,LT50,NA
2222,L2,LT10
3333,LT50
4444,K2
5555,IA
6666,NA
1 ...
1
vote
3answers
312 views
How to return only part of a line with egrep
I have a program that returns something like this:
status: playing
artURL: http://beta.grooveshark.com/static/amazonart/m3510922.jpg
estimateDuration: 29400
calculatedDuration: 293000
albumName: This ...
0
votes
2answers
41 views
egrep: find lines with no characters
I have a text file and I need to search that file and figure how many blank lines are in the file. A blank line is a line with no characters.
I must use egrep.
0
votes
0answers
45 views
egrep: CPU and memory usage [migrated]
My Linux machine has 16 processors and free memory of 70 GB but when I run an egrep command, the command is using (checked through the top command) 100% of CPU and 0.5 of memory:
22391 aime 25 ...
0
votes
3answers
86 views
syntax error with a regex in unix
I tried find a regular expression that matches any number between 1 and 999.
When is uses hooks I get a syntax error
(bash: syntax error near unexpected token `(')
and when I don't use the hooks ...