zsh-users
 help / color / mirror / code / Atom feed
From: TJ Luoma <luomat@gmail.com>
To: shawn wilson <ag4ve.us@gmail.com>
Cc: Zsh Users <zsh-users@zsh.org>
Subject: Re: directory alias
Date: Tue, 3 Dec 2013 23:41:20 -0500	[thread overview]
Message-ID: <CADjGqHt4UZVd8DLLK5eHHKrDa-MM5=YQNA2jOynR4kLNbqOw=g@mail.gmail.com> (raw)
In-Reply-To: <CAH_OBidDmzECfgLVcEUmRj2+bean+WjuBvgiPV6SoE9i0kPfKA@mail.gmail.com>

[-- Attachment #1: Type: text/plain, Size: 1293 bytes --]

I make variables for directories I use a lot

db="$HOME/Dropbox"

bin="$db/bin"

and then I can use that to either move files (mv foo $bin) or 'cd' to them
just by typing the variable "$db" and hitting enter.

But if that's what you mean by a "universal alias", then you'd have to do
something else.

You could make your own `cd` function

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 "$@"
else
case "$@" in
 bar)
chdir  /usr/local/some/path/bar
;;

foo)
chdir ~/some/deep/directory/tree/foo

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




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  4:42 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 [this message]
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

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='CADjGqHt4UZVd8DLLK5eHHKrDa-MM5=YQNA2jOynR4kLNbqOw=g@mail.gmail.com' \
    --to=luomat@gmail.com \
    --cc=ag4ve.us@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).