User Tools

Site Tools


bash:commands:sort:numeric_sort_bug

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

bash:commands:sort:numeric_sort_bug [2021/01/30 15:48] – created peterbash:commands:sort:numeric_sort_bug [2021/01/30 15:50] (current) peter
Line 1: Line 1:
 ====== BASH - Commands - sort - Numeric Sort Bug ====== ====== BASH - Commands - sort - Numeric Sort Bug ======
 +
 +A test file:
  
 <file bash test.txt> <file bash test.txt>
Line 11: Line 13:
  
 <code bash> <code bash>
-sort -n sortbug | uniq+sort -n test.txt | uniq
 </code> </code>
  
Line 26: Line 28:
  
 <code bash> <code bash>
-sort -un sortbug+sort -un test.txt
 </code> </code>
  
Line 51: Line 53:
  
 </WRAP> </WRAP>
 +
 +----
 +
 +===== Use sort to correctly sort IP addresses =====
 +
 +<code bash>
 +sort -t . -k1,1n -k2,2n -k3,3n -k4,4n test.txt
 +</code>
 +
 +returns:
 +
 +<code bash>
 +10.0.0.1:80
 +10.0.0.1:8080
 +192.168.1.123.125:12345
 +192.168.1.123.25:12345
 +</code>
  
bash/commands/sort/numeric_sort_bug.1612021706.txt.gz · Last modified: 2021/01/30 15:48 by peter

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki