Antw: Korn Shell Q

From: Dieter Zavelberg (dieter.zavelberg_at_POSTBANK.DE)
Date: 07/03/03

  • Next message: Green, Simon: "Re: ssa speed question"
    Date:         Thu, 3 Jul 2003 09:07:51 +0200
    To: aix-l@Princeton.EDU
    
    

    what about (for ksh)
     
    $ cat qwert ("your grep")
    qqq
    aaa
    yyy
    www
    sss
    xxx

    $ l=$(cat qwert | xargs)
    $ echo $l
    qqq aaa yyy www sss xxx

    $ set -A VAR $l # create array VAR with elements from "list" $l

    $ echo ${VAR[*]} # display all elements of VAR
    qqq aaa yyy www sss xxx

    $ echo ${#VAR[*]} # number of elements in VAR
    6

    $ echo ${VAR[0]} # first element has index 0
    qqq

    $ echo ${VAR[${#VAR[*]}-1]} # last element
    xxx

    >>> Singh@XAVIER.EDU 02.07.03 17:01:02 >>>

    Hello,
     
    Quick, simple korn shell question:
     
    I have the result of grep and cut commands that shows multiple lines. For example:
     
    345trh
    hur88
    kjsdhf
    eryyt9
    333ret
     
    How can I divide these lines to feed into variables? That is, each of the above lines needs to be assigned to a variable.
     
    Thanks
     
     
     
    --------------------------------
    "Colorless green ideas sleep furiously."
    --------------------------------
    Ranbir Singh
    System Administrator
    Xavier University
    Cincinnati, Ohio
    O: 513.745.3889
    E: singh@xavier.edu


  • Next message: Green, Simon: "Re: ssa speed question"

    Relevant Pages

    • Re: Antw: Korn Shell Q
      ... thats one hell of an over-engineered grep!! ... $ cat qwert ... $ echo $# display all elements of VAR ... their use of the Company's electronic mail system. ...
      (AIX-L)
    • Re: ssh and chroot
      ... ++ echo /bin/mkdir ... ++ awk '' ... ++ grep '^/' ...
      (comp.security.ssh)
    • Re: test script
      ... echo $var> file1 ... literally in a string then you need to quote the string (or at ... While parsing your echo command bash first replaces $var with the ...
      (comp.os.linux.misc)
    • Re: Finding stream job signons
      ... it's a 'smart' grep. ... echo This command uses grep to search a fileset for all occurances ... setvar _g_grep_ok false ...
      (comp.sys.hp.mpe)
    • Re: Grep Question
      ... You can use single-quotes to enclose command arguments containing special characters so they won't be interpreted by the command shell. ... Subject: Grep Question ... If you wish to confirm the origin or content of this communication, ...
      (AIX-L)