On Tue, Aug 18, 2009 at 08:48:13PM -0600, le...@gmail wrote: > > On Aug 18, 2009, at 2:37, stetner <[email protected]> wrote: > > > #!/bin/sh > > sort | uniq -c "$1" > > sort -u > > Save the pipe.
No, the pipe is necessary. `sort -u` is equivalent to `sort | uniq`. We're doing `sort | uniq -c`. Ronald --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "BBEdit Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/bbedit?hl=en If you have a specific feature request or would like to report a suspected (or confirmed) problem with the software, please email to "[email protected]" rather than posting to the group. -~----------~----~----~----~------~----~------~--~---
