The UNIX and Linux Forums  
Hello and Welcome from United States to the UNIX and Linux Forums! Thank You for Visiting and Joining Our Global Community.

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Sort file alphabetically AND numerically mrodrig UNIX for Dummies Questions & Answers 2 05-19-2008 09:46 AM
How to sort alphabetically after finding values doubleminus UNIX for Dummies Questions & Answers 4 04-28-2008 06:45 AM
Need to serach if a new line character exists on the last line in a file sunilbm78 UNIX for Dummies Questions & Answers 10 02-29-2008 02:15 PM
Appending the line number and a seperator to each line of a file ? pjcwhite Shell Programming and Scripting 4 03-21-2007 01:29 AM
Remove header(first line) and trailer(last line) in ANY given file madhunk Shell Programming and Scripting 2 03-13-2006 03:36 PM

Closed Thread
English Japanese Spanish French German Portuguese Italian Dutch Swedish Russian Norwegian Hungarian Hebrew Danish
 
LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 02-09-2008
H2OBoodle H2OBoodle is offline
Registered User
  
 

Join Date: Jan 2008
Posts: 18
Sort a file line by line alphabetically

infile:
z y x
c b a

desired output:
x y z
a b c

I don't want to sort the lines into this:
a b c
x y z

nor this:
c b a
z y x

The number of fields per line and number of lines is indeterminate. The field separator is always a space.

Thanks for the use of your collective brains.
  #2 (permalink)  
Old 02-09-2008
KevinADC KevinADC is offline Forum Advisor  
Registered User
  
 

Join Date: Jan 2008
Posts: 731
what have you tried so far?
  #3 (permalink)  
Old 02-09-2008
HPAVC's Avatar
HPAVC HPAVC is offline
Registered User
  
 

Join Date: Feb 2008
Posts: 106
My homework was never this much fun. You have to do this all in bash or what exactly?

PHP Code:
#!/usr/bin/perl                                                                                                              

use strict;
use 
warnings;

while(
my $line = <STDIN>) {
    print 
join(" "sort(split(/s+/, $line))) . "\n";


Last edited by HPAVC; 02-09-2008 at 08:16 PM..
  #4 (permalink)  
Old 02-09-2008
H2OBoodle H2OBoodle is offline
Registered User
  
 

Join Date: Jan 2008
Posts: 18
I've studied the sort docs and tried many combinations without success.
sort

I'm sure I could muddle my way through with a python script, but I was hoping to get a one-liner using a "sort" or similar utility.

This exercise is really just a puzzle I came up with while reading the Vim docs on filters. I was trying to sort a range of lines, then I asked myself if I could just sort the current line.

I'm not a student in any classes, just a student of life.
  #5 (permalink)  
Old 02-09-2008
H2OBoodle H2OBoodle is offline
Registered User
  
 

Join Date: Jan 2008
Posts: 18
I responded to your question but I included a link, so I guess it's being held up for administrator review. Anyway, I've tried "sort" and some awk, but still no joy.
  #6 (permalink)  
Old 02-09-2008
H2OBoodle H2OBoodle is offline
Registered User
  
 

Join Date: Jan 2008
Posts: 18
The old split sort join trick. Nice. Thanks.
  #7 (permalink)  
Old 02-09-2008
ghostdog74 ghostdog74 is offline Forum Advisor  
Registered User
  
 

Join Date: Sep 2006
Posts: 2,426
Quote:
Originally Posted by H2OBoodle View Post
Anyway, I've tried "sort" and some awk, but still no joy.
you should show how you did that.
anyway, have a go at it
Code:
awk '
 {
  for(i=NF;i>0;i--){
      # fill in the blanks
  }
 }
' file
Sponsored Links
Closed Thread

Bookmarks

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT -4. The time now is 10:48 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited. Language translation by Google.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0