Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: desift

by BUU (Prior)
on Nov 28, 2003 at 22:01 UTC ( [id://310792]=note: print w/replies, xml ) Need Help??


in reply to desift

Not being intimately familar with either, but just looking at the inputs and results and expect usage, how is desift different from awk?

Replies are listed 'Best First'.
Re: Re: desift
by princepawn (Parson) on Nov 29, 2003 at 09:01 UTC

    good question. I never knew much about awk so I googled for a tutorial introduction and found these features as different:

    1. awk can take different actions on each line by use of a series of
      pattern { action } pattern { action }
      rules. C<desift> does not do different things on different lines based on the input text
    2. awk is a complete language offering flow of control, functions and more. An entire webserver has been written in awk. Here is a simple program which takes small text delimited database and tabulates the amount of each type of computer:
      { computers[$1]++ } END { for ( name in computers ) print "The number of ",name,"computers is",compu +ters[name] }
    PApp::SQL and CGI::Application rock the house
      Ah. I'm afraid I misspoke, I meant sed, not awk =/. Not using either language I tend to get confused as to which is which.

      As for sed, It appears to have various append commands, insert commands, and lots of other commands, including regexes. It automatically executes on all lines by default but you can specify specific lines.

        The more I read perlrun the more I am convinced that most of desift can be done with command-line flags, including what you mention: executing all lines by default: just the the -n or -p flags PApp::SQL and CGI::Application rock the house

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://310792]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (5)
As of 2024-04-23 17:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found