Results 1 to 3 of 3

Thread: Sorting problems again

  1. #1
    Junior Member
    Join Date
    Feb 2002
    Posts
    59

    Sorting problems again

    okay what i have done is created a total of three files from the etc/passwd file

    File one named: names (This file a got all the users names from the /etc/passwd file and put them in this file.
    File two named: userid (This file I got all userid's from the /etc/passwd file and put them in this file.
    File three: users.ref (This file I pasted with a space as delimiator of the names and userid files together)
    Had use the command paste -d" " userid names > users.ref

    now that the contents of the file users.ref is clear my object is to eventurally write a script using this one of display the entire contents of the users.ref file in aphalbetical order by last name .

    Right now Im just working on the sorting of this so i can figure out how to write the script.

    For exampe the file looks like this.im making up userid and such cuz i can't post it here.

    Code:
    sn12345 Karin Neostar
    So basically im struggling how to sort this file by last name altho the first and last name are considered as one field. I can sort by fields no problem but not part of a field.

    Any ideas?

    TIA

  2. #2
    Junior Member
    Join Date
    Feb 2002
    Posts
    59

    Re:Sorting problems again

    oh forgot to mention, this is using unix with the korn shell.

  3. #3
    Junior Member
    Join Date
    Feb 2002
    Posts
    59

    Re:Sorting problems again

    I think i got it now.

    cat users.ref |sort -k3

    I keep forgeting about the k.

Similar Threads

  1. getting online and sound problems
    By gtoman in forum Linux - General Topics
    Replies: 2
    Last Post: 06-08-2006, 10:03 PM
  2. Fixing 95/98 Networking problems
    By regix in forum Windows - General Topics
    Replies: 0
    Last Post: 01-01-2005, 01:35 AM
  3. Problems with Distros
    By GhostDawg in forum Linux - General Topics
    Replies: 5
    Last Post: 01-07-2003, 02:46 AM
  4. Install problems with RedHat 8.0 (Video Related) Please help.
    By Nekronos in forum Linux - Hardware, Networking & Security
    Replies: 3
    Last Post: 01-05-2003, 10:23 PM
  5. All sorts of X problems!!
    By pjt in forum Linux - Software, Applications & Programming
    Replies: 5
    Last Post: 11-14-2002, 04:31 PM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •