On 10/19/2015 07:40 PM, Kent Fredric wrote:
> On 20 October 2015 at 03:55, Lars Noodén wrote:
>> What is the main reason for the preference of File::Slurper over
>> File::Slurp these days?
>
>
> http://blogs.perl.org/users/leon_timmermans/2015/08/fileslurp-is-broken-and-wrong.html
Thanks. That
On 20 October 2015 at 03:55, Lars Noodén wrote:
> What is the main reason for the preference of File::Slurper over
> File::Slurp these days?
http://blogs.perl.org/users/leon_timmermans/2015/08/fileslurp-is-broken-and-wrong.html
--
Kent
KENTNL - https://metacpan.org/author/KENTNL
--
To unsubs
On Mon, Oct 19, 2015 at 9:46 AM, Shlomi Fish wrote:
> Hi Ian and Prashant and all,
>
> On Mon, 19 Oct 2015 09:28:15 -0500
> Ian wrote:
>
> > Take a look at File::Slurp.
> >
>
> Just for the record, using File::Slurp is no longer recommended and one
> should
> be using https://metacpan.org/pod/Pa
On Mon, Oct 19, 2015 at 07:48:06PM +0530, Prashant Thorat wrote:
> Hi All,
Hello,
> I have a file with multiple lines ,I want to assign all content to variable
> & then want to work on it.
> Like want to match pattern /window/ from it.
> how can it is possible ?
> for example -
>
> open ( F1 ,"f
On 10/19/2015 05:49 PM, Shlomi Fish wrote:
> Just for the record, using File::Slurp is no longer recommended and one should
> be using https://metacpan.org/pod/Path::Tiny or perhaps
> https://metacpan.org/pod/File::Slurper instead.
What is the main reason for the preference of File::Slurper over
F
On Mon, 19 Oct 2015 19:48:06 +0530
Prashant Thorat wrote:
> Hi All,
>
> I have a file with multiple lines ,I want to assign all content to
> variable & then want to work on it.
> Like want to match pattern /window/ from it.
> how can it is possible ?
> for example -
>
> open ( F1 ,"file.txt") |
Hi Ian and Prashant and all,
On Mon, 19 Oct 2015 09:28:15 -0500
Ian wrote:
> Take a look at File::Slurp.
>
Just for the record, using File::Slurp is no longer recommended and one should
be using https://metacpan.org/pod/Path::Tiny or perhaps
https://metacpan.org/pod/File::Slurper instead.
Fin
Take a look at File::Slurp.
Regards
On Mon, Oct 19, 2015 at 9:18 AM, Prashant Thorat
wrote:
> Hi All,
>
> I have a file with multiple lines ,I want to assign all content to
> variable & then want to work on it.
> Like want to match pattern /window/ from it.
> how can it is possible ?
> for exam