On Thursday, August 29, 2002, at 07:20 , Phil Dobbin wrote:
[..]
>> Once I hear back on this I plan to download some modules and use them.
>> The LWP module has tempted me from the very beginning.
>
> Remember the issue with case insensitivity on Mac OS X when installing 
> LWP. For more details see:
>
> <http://david.wheeler.net/osx.html>
>
> Scroll down right to the bottom and the details are there.


My compliments on the documentation and
the work around...

my path was to download the ppt perl version of head
http://www.perl.com/language/ppt/src/head/index.html

and put the personal modification into it

        # Get the options.
        if ( $ARGV[0] =~ /-(\d+)/ ) {

        #
        # drieuxish hack to allow for the old school
        #       head -12 file
                $ARGV[0] = "-n$1";

        }

this way I can still do

        head -12 file

vice the standard bsd style:

        SYNOPSIS
      head [-n count | -c bytes] [file ...]




ciao
drieux

---

Reply via email to