zsh-users
 help / color / mirror / code / Atom feed
From: Dominik Vogt <vogt@linux.vnet.ibm.com>
To: zsh-users@zsh.org
Subject: Re: directory alias
Date: Wed, 4 Dec 2013 08:06:32 +0100	[thread overview]
Message-ID: <20131204070632.GA3114@linux.vnet.ibm.com> (raw)
In-Reply-To: <CAH_OBidDmzECfgLVcEUmRj2+bean+WjuBvgiPV6SoE9i0kPfKA@mail.gmail.com>

On Tue, Dec 03, 2013 at 10:21:53PM -0500, shawn wilson wrote:
> What I want is a way to do:
> cd foo
> and it go to ~/some/deep/directory/tree/foo
> and
> cd bar
> and it go to /usr/local/some/path/bar
> 
> Is there some zsh-ism (or better bash-ism that also works in zsh so
> that this works on systems I maintain without zsh) to do this without
> symlinks?

Named directories.

  $ hash -d foo=~/some/deep/directory/tree/foo
  $ hash -d bar=/usr/local/some/path/bar
  cd ~foo
  cd ~bar

Personally I prefer aliases like

  alias cfoo "cd ~/some/deep/directory/tree/foo"

as I don't like to have the shortcuts for manually named dirs in
the prompt.  And actually finding these cd commands from the
history works automatically without having to define aliases or
hash table entries manually.

Ciao

Dominik ^_^  ^_^

-- 

Dominik Vogt
IBM Germany


      parent reply	other threads:[~2013-12-04  7:18 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-12-04  3:21 shawn wilson
2013-12-04  4:41 ` TJ Luoma
2013-12-04  5:22   ` shawn wilson
2013-12-04  7:21     ` Bart Schaefer
2013-12-04 15:25   ` Christoph (Stucki) von Stuckrad
2013-12-06  7:25     ` shawn wilson
2013-12-04  7:06 ` Dominik Vogt [this message]

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=20131204070632.GA3114@linux.vnet.ibm.com \
    --to=vogt@linux.vnet.ibm.com \
    --cc=zsh-users@zsh.org \
    /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.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/zsh/

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 NNTP newsgroup(s).