public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
From: Igor Pechtchanski <pechtcha@cs.nyu.edu>
To: Frantisek Dufka <dufkaf@seznam.cz>
Cc: cygwin@cygwin.com
Subject: Re: Open bash at the current explorer directory?
Date: Wed, 18 Sep 2002 08:26:00 -0000	[thread overview]
Message-ID: <Pine.GSO.4.44.0209181104120.1952-100000@slinky.cs.nyu.edu> (raw)
In-Reply-To: <000901c25f06$bb88ea70$5365060a@franta>

As I posted earlier, you can avoid calling both ~/.bashrc and /etc/profile
by running bash with a "-i" option (
http://www.cygwin.com/ml/cygwin/2002-09/msg00680.html ).

So invoke the first bash as '-e bash --login -i', and the second as 'exec
bash --rcfile ~/.profile'.  You may get ~/.bashrc executed on the second
invocation.  You will lose the system-wide settings that are set in
/etc/profile, though.
	Igor

On Wed, 18 Sep 2002, Frantisek Dufka wrote:

> Umm they both work, sort of. As I said before, the user profile gets
> executed twice. If you run some executable from the user profile which
> should run only once, it's a problem.
>
> First invocation is from the '-e /usr/bin/bash --login' part, the second is
> from the 'exec bash --rcfile ~/.profile' (or 'exec -l bash')
>
> My solution runs bash only once and I have no problems with it so far. I
> just wanted to share. I hope it's clear now :)
>
> Frantisek
>
> ----- Original Message -----
> From: "John Vincent" <jpv50@hotmail.com>
> To: <dufkaf@seznam.cz>; <marcos@it.uc3m.es>
> Cc: <cygwin@cygwin.com>
> Sent: Wednesday, September 18, 2002 1:02 PM
> Subject: Re: Open bash at the current explorer directory?
>
>
> > Hi,
> >
> > Here is an alternative that has also been posted before, that also
> > works when it's a disk drive rather than a directory. Does
> > this work any better for you? (Both work fine for me on W2K SP3)
> >
> > /John Vincent
> >
> > ----------------------------------------------
> > REGEDIT4
> >
> > [HKEY_CLASSES_ROOT\Directory\shell\rxvtHere]
> > @="r&xvtHere"
> >
> > [HKEY_CLASSES_ROOT\Directory\shell\rxvtHere\command]
> > @="C:\\CYGWIN\\BIN\\rxvt.exe -sr -ut -tn rxvt -bg black -fg grey -fn
> > \"Courier-16\" -sl 2000 -e /usr/bin/bash --login -i -c \"cd '%1';echo
> > '%1';exec bash --rcfile ~/.profile -i\""
> >
> > [HKEY_CLASSES_ROOT\Drive\shell\rxvtHere]
> > @="r&xvtHere"
> >
> > [HKEY_CLASSES_ROOT\Drive\shell\rxvtHere\command]
> > @="C:\\CYGWIN\\BIN\\rxvt.exe -sr -ut -tn rxvt -bg black -fg grey -fn
> > \"Courier-16\" -sl 2000 -e /usr/bin/bash --login -i -c \"cd '%1';echo
> > '%1';exec bash --rcfile ~/.profile -i\""
> > ---------------------------------------------
> >
> > >From: "Frantisek Dufka" <dufkaf@seznam.cz>
> > >To: "Marcos Lorenzo de Santiago" <marcos@it.uc3m.es>
> > >CC: <cygwin@cygwin.com>
> > >Subject: Re: Open bash at the current explorer directory?
> > >Date: Wed, 18 Sep 2002 12:42:09 +0200
> > >
> > >Sure. We are both talking about following key, right?
> > >
> > >Windows Registry Editor Version 5.00
> > >
> > >[HKEY_CLASSES_ROOT\Directory\shell\0cmd-rxvt]
> > >@="Open rxvt Window Here"
> > >
> > >[HKEY_CLASSES_ROOT\Directory\shell\0cmd-rxvt\command]
> > >@="C:\\cygwin\\bin\\rxvt.exe -bg black -fg white -sr -sl 1000 -fn
> > >\"Fixedsys\" -ls -e /usr/bin/bash --login -c \"cd \\\"`cygpath -u
> > >'%1'`\\\";
> > >exec bash\""
> > >
> > >It didn't work for me. My settings in .bash_profile were not executed in
> > >the
> > >final 'exec bash' but in the -e /usr/bin/bash, which is wrong, because it
> > >gets forgotten by the exec'ed shell. If you add -l (exec -l bash) it is
> > >executed twice. In my case it tells me two fortune cookies instead of one.
> > >That's nice, but they may run out quickly :)
> > >
> > >Frantisek
> > >
> > >----- Original Message -----
> > >From: "Marcos Lorenzo de Santiago" <marcos@it.uc3m.es>
> > >To: "Frantisek Dufka" <dufkaf@seznam.cz>
> > >Cc: <cygwin@cygwin.com>
> > >Sent: Wednesday, September 18, 2002 11:05 AM
> > >Subject: Re: Open bash at the current explorer directory?
> > >
> > >
> > >
> > >      > I don't know how to do it without using .bashrc, but this works for
> > >      > me (current cygwin, NT 4.0)
> > >      >
> > >      > Registry key contains:
> > >      >
> > >      > D:\cygwin\bin\rxvt.exe -sb -sr -sl 16384 -fn fixedsys -fg gray -bg
> > >      > black -e /bin/env CFH="%1" /bin/bash --login
> > >      >
> > >      > .bashrc contains
> > >      >
> > >      > if [ "$CFH" != "" ] ; then
> > >      >      cd "$CFH"
> > >      >      unset CFH
> > >      > fi
> > >      >
> > >      > No temporary files, bash.exe or .bash_profile is not executed twice.
> > >      > Also looks like cygpath -u is not needed, DOS paths seem to work in
> > >      > cd command.
> > >
> > >Not long ago someone posted a registry key to do this with right-click
> > >button option. It works quite well and you can modify the key to your own
> > >preferences (background colour, font colour, etc.). Someone posted a way
> > >to opne a explorer from current bash PWD.
> > >
> > >rgrds,
> > >m4c.
> > >
> > >
> > >      >
> > >      > Frantisek
> > >      >
> > >      > -------------------------------------
> > >      > * John Daniel Doucette <john.doucette@jjmackay.ca> [13-09-02 15:23]:
> > >      >  > I am using Win2000 Pro, SP3.   Is there a way to invoke an
> > >      >  > interactive bash shell at a particular directory, without
> > >      >  > using a .bashrc or similar file?
> > >      >  > I.e. on the command lie alone?  The --login and -c options
> > >      >  > appear to be mutually exclusive.  I would like to be able
> > >      >  > browse quickly to a directory with explorer, option/right
> > >      >  > click on the directory, then select a custom "open with
> > >      >  > cygwin" option, and have the bash shell open at that
> > >      >  > directory.  Has anyone tried this?
> > >      >
> > >      > Read this from the archive.
> > >      > http://www.cygwin.com/ml/cygwin/2002-05/msg01648.html
> > >      >
> > >      > HTH
> > >      > Jens

-- 
				http://cs.nyu.edu/~pechtcha/
      |\      _,,,---,,_		pechtcha@cs.nyu.edu
ZZZzz /,`.-'`'    -.  ;-;;,_		igor@watson.ibm.com
     |,4-  ) )-,_. ,\ (  `'-'		Igor Pechtchanski
    '---''(_/--'  `-'\_) fL	a.k.a JaguaR-R-R-r-r-r-.-.-.  Meow!

"Water molecules expand as they grow warmer" (C) Popular Science, Oct'02, p.51


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Bug reporting:         http://cygwin.com/bugs.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/

  reply	other threads:[~2002-09-18 15:11 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2002-09-18  4:30 John Vincent
2002-09-18  4:42 ` Frantisek Dufka
2002-09-18  8:26   ` Igor Pechtchanski [this message]
  -- strict thread matches above, loose matches on Subject: below --
2002-09-30  9:57 Gunnar Boström
2002-09-30 10:00 ` Christopher Faylor
2002-09-30  4:25 Gunnar Boström
2002-09-30  6:16 ` Gerrit P. Haase
2002-09-27  2:49 Gunnar Boström
2002-09-27  7:12 ` Igor Pechtchanski
2002-09-26  7:31 Open bash@the " Igor Pechtchanski
2002-09-26  8:00 ` Open bash at the " Igor Pechtchanski
2002-09-26  0:48 Gunnar Boström
2002-09-25  1:44 Gunnar Boström
2002-09-25 16:02 ` Igor Pechtchanski
2002-09-19 10:01 Tackett, Galen
2002-09-19 10:59 ` Igor Pechtchanski
2002-09-19 11:38   ` Michael A Chase
2002-09-21 10:52     ` Nicholas Wourms
     [not found] <000701c25fbc$ef4bd550$5365060a@franta>
2002-09-19  8:12 ` John Daniel Doucette
2002-09-18 14:03 John Daniel Doucette
2002-09-18  2:09 Frantisek Dufka
2002-09-18  2:14 ` Marcos Lorenzo de Santiago
2002-09-18  4:17   ` Frantisek Dufka
2002-09-13  6:34 Vince Hoffman
2002-09-13  6:33 John Daniel Doucette
2002-09-13 10:46 ` Tim Beuman
2002-09-13 11:15   ` Igor Pechtchanski
2002-09-16  8:42 ` Jens Schuessler

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=Pine.GSO.4.44.0209181104120.1952-100000@slinky.cs.nyu.edu \
    --to=pechtcha@cs.nyu.edu \
    --cc=cygwin@cygwin.com \
    --cc=dufkaf@seznam.cz \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).