zsh-users
 help / color / mirror / code / Atom feed
From: shawn wilson <ag4ve.us@gmail.com>
To: TJ Luoma <luomat@gmail.com>
Cc: Zsh Users <zsh-users@zsh.org>
Subject: Re: directory alias
Date: Wed, 4 Dec 2013 00:22:52 -0500	[thread overview]
Message-ID: <CAH_OBicWiE0d+YVBu_+nR+X8Lmc_SX4+_K0xRzh=b+o9GygUNg@mail.gmail.com> (raw)
In-Reply-To: <CADjGqHt4UZVd8DLLK5eHHKrDa-MM5=YQNA2jOynR4kLNbqOw=g@mail.gmail.com>

Ah, of course. Thanks for the idea... I feel stupid.

On Tue, Dec 3, 2013 at 11:41 PM, TJ Luoma <luomat@gmail.com> wrote:
>

> function cd {
>
> if [ "$#" = "0" ]
> then
> # if no arg, go to $HOME
> chdir "$HOME"
> else
> if [ -d "$@" ]
> then
> # if the arg is a valid directory, go there
> chdir "$@"

elsif [ -n "${$@}" ] && [ -d "${$@}" ]
then
  chdir "${$@}"
else

> echo "chdir: no such file or directory: $@"
> return 1
> ;;
> esac
> fi

> }

If I could only inject variables into the function like:
local $cd::foo="/usr/local/foo"

so I could do that from the command line and wouldn't have any
namespace conflicts, that'd be perfect. But, I can live with global I
guess....

>
>
>
>
> On Tue, Dec 3, 2013 at 10:21 PM, shawn wilson <ag4ve.us@gmail.com> wrote:
>>
>> not sure if this is really a 'zsh thing' but I'm looking for a way to
>> create aliases for a command. I don't want a bunch of symlinks in my
>> home directory, and I don't want a universal alias for each directory
>> I commonly cd into. 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?
>
>


  reply	other threads:[~2013-12-04  5:23 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 [this message]
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

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='CAH_OBicWiE0d+YVBu_+nR+X8Lmc_SX4+_K0xRzh=b+o9GygUNg@mail.gmail.com' \
    --to=ag4ve.us@gmail.com \
    --cc=luomat@gmail.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).