| Newsgroups |
gmane.editors.sed.user |
| Message-ID |
<[email protected]> |
On 2014-11-04 09:32, Rafael [email protected] [sed-users] wrote:
> didnt work, but thanks.
>
>
> I think the find from windows is screwing it.
That would make sense. You can always specify the path to "find" to
ensure that you're pointing to an installed version of it rather than
Win32's built-in. I presume you got sed as part of a cygwin package
that also includes find, in which case you should just be able to use
e:\emls\> c:\path\to\cygwin\find . -name '*.eml' -exec sed -i.bak 1,9d {} \;
to force that "find" to run.
-tim