On Thu, Apr 16, 2015 at 8:55 AM, Eduardo A. Bustamante López
<dual...@gmail.com> wrote:
> Any reason to justify this instead of using a simple loop?

I find myself in need of something along the lines of Python's
`re.split` and `re.findall` all the time. E.g. splitting an ip into an
array of octets.

On Thu, Apr 16, 2015 at 5:49 AM, Valentin Bajrami
<valentin.bajr...@gmail.com> wrote:
> Hi,
>
> According to ''help read'' we can specify  -N[chars]  to trigger return
> automatically.  Is it possible to approach read differently?
>
> For example:  $re is some regular expression

FWIW, ksh has two redirect operators that can be used together with
`read` to get something like this. They're somewhat difficult to use
IMO:

        <#pattern     Seeks forward to the beginning of the next line
containing pattern.

        <##pattern    The same as <# except that the portion of the
file that is skipped is copied to standard output.

-- 
Dan Douglas

Reply via email to