Sponsored Content
Top Forums Shell Programming and Scripting need help in correcting the code Post 302556425 by ygemici on Sunday 18th of September 2011 01:10:19 PM
Old 09-18-2011
we must firstly use the sort command, because of uniq command process for sequential lines.therefore we use firstly sort command for get the sequential lines.
Code:
# cat file
a b
b c
a b
d c
a b
a b

uniq + sort (unsuccesfull)
Code:
# cut -f1 -d' ' file|uniq -c
      1 a
      1 b
      1 a
      1 d
      2 a

Code:
# cut -f1 -d' ' file|uniq -c|sort
      1 a
      1 a
      1 b
      1 d
      2 a


sort + uniq (successfull)
Code:
# cut -f1 -d' ' file|sort
a
a
a
a
b
d

Code:
# cut -f1 -d' ' file|sort|uniq -c
      4 a
      1 b
      1 d

and with sed
Code:
# sed 's/ *\(.*\) \(.*\)/\2  \1/'

s (substitute) --> s/regexp/replacement/
* --> represent the initial "spaces" of string (between the quotes)
Code:
"      "4 a
"      "1 b
"      "1 d

\(.*\) --> 4 --> \(.*\) this strucutes saves the our string (.* is means everything) --> represent '\1' while writes it
and there is a space " "
\(.*\) --> a --> represent '\2' while writes it

finaly we write our values to stdoutp
\2 --> a
and two spaces
\1 --> 4

Code:
# cut -f1 -d' ' file |sort|uniq -c|sed 's/ *\(.*\) \(.*\)/\2 \1/'
a  4
b  1
d  1

regards
ygemici

Last edited by ygemici; 09-18-2011 at 03:03 PM..
This User Gave Thanks to ygemici For This Post:
 

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Correcting script

Hi! I have for example a script/file: +1 echo "toto" +2 echo "abcdef +3 echo "dqmsl" $r "dsqlfj" +4 cat titi | tr \t' ';' +5 exit --------------------------------------- I try to find a solution who say: <ERROR> The character " has been forgotten a the line 2 The character... (7 Replies)
Discussion started by: Castelior
7 Replies

2. Solaris

Correcting system time

I've installed Solaris 8, but didn't quite give it the correct (machine) time. Think the machine is out of sync. Can I change that afterwards or do I have to do another install right from the beginning? (1 Reply)
Discussion started by: kuultak
1 Replies

3. UNIX for Dummies Questions & Answers

Correcting the time on FreeBSD

Possibly this is not even a FreeBSD issue, but a BIOS issue. Upon installation of FreeBSD, the time is set using the standard feature of selecting a time zone. Some installations are correctly set to the current time, but others are either one or two hours off. So the time is read from the time... (0 Replies)
Discussion started by: figaro
0 Replies

4. AIX

Help me in correcting sendmail.cf

Hi all, In AIX I need to set the below two as of now these are not. 1)Opnoexpn is not set in sendmail.cf 2)Opnovrfy is not set in sendmail.cf Please let me know the steps to set Opnoexpn and Opnovrfy in sendmail.cf Thanks and Regards, Pavankumar (0 Replies)
Discussion started by: pavankumar432
0 Replies

5. UNIX Desktop Questions & Answers

Correcting the display resolution

I have an issue with the display resolution under Xfce. The monitor can handle 1024x768, but the screen display is 800x600. The control panel does not allow me to change this. I also found the file .config/xfce4/xfconf/xfce-perchannel-xml/displays.xml in which I have made changes, but after a... (0 Replies)
Discussion started by: figaro
0 Replies

6. UNIX for Dummies Questions & Answers

[Solved] Help correcting file with differing number of fields

Hi all, I have a tab separated file, and one of the fields is sub-delimited by colon. The problem is there can be zero to 4 colons within this field. When I try to change colons to tabs the result is a file with a differing number of fields. I want to go from: a:b:c:d:e a:b:c a:b:c:d:e a... (4 Replies)
Discussion started by: torchij
4 Replies

7. Shell Programming and Scripting

Need help in correcting sed script

Hi All, I have a big configuration log where I want to change string "aaa" to "bbb" under auto-config-policy only right after "deny", "accept" and "hold" strings, nowhere else. <<<< text >>>>> auto-config-policy test deny aaa precedence 4 profile aaa any deny aaa... (4 Replies)
Discussion started by: temp.sha
4 Replies

8. Shell Programming and Scripting

Correcting awk error

the following code turns back ticks "`" to new lines "\n". Then, it attempts to grab only a certain section of the output and excludes lines that contain particular patterns...i.e. "ZooLine|echo|opencert". awk -vs1="\`" '{gsub(s1,"\n",$0)} 1 {print ; if(/NewLine \(\)/,/}/{if(!/NewLine|echo... (3 Replies)
Discussion started by: SkySmart
3 Replies
All times are GMT -4. The time now is 09:08 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy