logo       

Re: [SPOILER] Perl Quiz-of-the-Week #9: msg#00341

Subject: Re: [SPOILER] Perl Quiz-of-the-Week #9
On Thu, 19 Dec 2002 17:03:20 -0500, 
perl-qotw-discuss-ZxR0713JXSrQT0dZR+AlfA@xxxxxxxxxxxxxxxx wrote:
>
>'spel' will be given one or more dictionaries of words that are
>already spelled correctly.  It will always try to read the file
>'/usr/dict/words'.  It will also try to read '.spel' files from
>certain directories.  If the user has set an environment variable
>SPELWORDS, 'spel' should interpret its value as a :-separated list of
>directories to be searched for '.spel' files.  If no SPELWORDS
>variable is set, 'spel' should search in the user's home directory and
>in the current directory.

Here's an attempt at a portable implementation of the above.  Any
comments?

use Config '%Config';
use File::Spec::Functions qw/catfile curdir rootdir/;

sub readdict {
    # N.B. The concept of 'home directory' is non-portable, but we
    # will feed a "~/*.spel" to glob and see if it returns anything.
    #
    # path_sep may not be set (which is a bug in those perl ports).
    local @ARGV = (catfile(rootdir, qw/usr dict words/),
                   map glob(catfile($_, '*.spel')),
                       (exists $ENV{SPELWORDS}
                           ? split($Config{path_sep}||':', $ENV{SPELWORDS})
                           : ("~", curdir)));

    print join "\n", "Using dictionaries:", @ARGV, "";

    while (<>) {
        chomp;
        ...
    }
}



<Prev in Thread] Current Thread [Next in Thread>
Google Custom Search

Recently Viewed:
linux.arklinux....    user-groups.lin...    kde.usability/2...    ietf.ipp/2002-0...    mail.spam.spamc...    os.netbsd.devel...    audio.cd-record...    text.unicode.de...    php.documentati...    games.fps.halfl...    window-managers...    suse.oracle.gen...    bug-tracking.gn...    video.dvdrip.us...    xfree86.cvs/200...    java.netbeans.m...    network.argus/2...    culture.sf.kill...    debian.ports.al...    freebsd.questio...    qplus.devel/200...    handhelds.palm....   
Home | blog view | USPTO Patent Archive | advertise | OSDir is an inevitable website. super tiny logo

Free Magazines

Cisco News
Receive a free quarterly e-newsletter with exclusive articles on how Cisco IT uses its own products and solutions to enable the business.
subscribe

Systems Management News, the newspaper for IT systems administration and data center managers! Each issue of Systems Management News is chock-full of news and analysis to help you understand what's happening in your field.
subscribe

The Enterprise Newsweekly eWeek is the essential technology information source for builders of e-business.
subscribe

Oracle Magazine Oracle Magazine contains technology strategy articles, sample code, tips, Oracle and partner news, how to articles for developers and DBAs, and more. Oracle (NASDAQ: ORCL) is the world's largest enterprise software company.
subscribe

Total Telecom Total Telecom is "The Economist of the communications industry".
subscribe