X-Recipient: archive-cygwin@delorie.com
X-SWARE-Spam-Status: No, hits=-3.1 required=5.0	tests=AWL,BAYES_00,KHOP_SPAMHAUS_DROP,KHOP_THREADED,RCVD_IN_DNSWL_NONE,SPF_HELO_PASS,T_RP_MATCHES_RCVD
X-Spam-Check-By: sourceware.org
To: cygwin@cygwin.com
From: Andrew DeFaria <Andrew@DeFaria.com>
Subject: Re: adding a folder to my path
Date: Wed, 02 Jan 2013 12:00:12 -0800
Lines: 52
Message-ID: <kc23ka$ga4$1@ger.gmane.org>
References: <50E46BDD.9000603@molconn.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=ISO-8859-1; format=flowed
Content-Transfer-Encoding: 7bit
User-Agent: Mozilla/5.0 (Windows NT 6.1; rv:17.0) Gecko/17.0 Thunderbird/17.0
In-Reply-To: <50E46BDD.9000603@molconn.com>
X-IsSubscribed: yes
Mailing-List: contact cygwin-help@cygwin.com; run by ezmlm
Precedence: bulk
List-Id: <cygwin.cygwin.com>
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@cygwin.com>
List-Subscribe: <mailto:cygwin-subscribe@cygwin.com>
List-Archive: <http://sourceware.org/ml/cygwin/>
List-Post: <mailto:cygwin@cygwin.com>
List-Help: <mailto:cygwin-help@cygwin.com>, <http://sourceware.org/ml/#faqs>
Sender: cygwin-owner@cygwin.com
Mail-Followup-To: cygwin@cygwin.com
Delivered-To: mailing list cygwin@cygwin.com

On 1/2/2013 9:18 AM, LMH wrote:
> I think this is a cygwin question, though it is certainly a general 
> linux question as well. I would like to divide up and organize some of 
> the apps and links in my path directories (such as /usr/local/bin) 
> into sub directories. If I add a folder to /usr/local/bin, that folder 
> is not in my path. Can someone give me the instructions for adding a 
> folder such as /usr/local/bin/ruby_viewer/ to my path?
This is a basic question that is shell specific and all.

What I do is I have a function, called append_to_path:

    append_to_path ()
    {
         component="$1";
         if [ -d "$component" ]; then
             if [ -z "$PATH" ]; then
                 PATH="$component";
             else
                 PATH="$PATH:$component";
             fi;
         fi
    }

It appends to the PATH IFF the component passed in is a directory that 
exists. This allows me to loop through a set of directories knowing that 
only those that exist will end up on the path:

    systemroot=$(cygpath -u $SYSTEMROOT)
    path_dirs="\
       .\
       "$HOME/bin"\
       "/opt/Rational/Clearcase/bin\
       ...
       "/usr/local/bin"\
       ...
       $systemroot/System32\
       $systemroot

    PATH=
    for component in $path_dirs; do
       append_to_path "$component"
    done

This allows me to set my PATH from scratch exactly how I want it. I add 
Unix paths, Solaris paths, HP_UX paths, FreeBSD paths and Windows paths 
to path_dirs. The net result is that I get the right set of paths on 
each of these systems dynamically.

YMMV.
-- 
Andrew DeFaria <http://defaria.com>
This space for rent


--
Problem reports:       http://cygwin.com/problems.html
FAQ:                   http://cygwin.com/faq/
Documentation:         http://cygwin.com/docs.html
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple

