77
74

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

zshAdvent Calendar 2012

Day 4

よく使うディレクトリに別名をつける

Posted at

コマンドに別名をつける方法はよく知られていると思いますが、同じようにディレクトリに別名をつけることができます。

文法

次のようにすると、~エイリアス名ディレクトリパス の別名になります。

hash -d エイリアス名=ディレクトリパス

具体例

例えば、次のように設定します。

hash -d log=/var/log

すると、次のように別名を使うことができます。

% ls ~log
(/var/log ディレクトリの内容表示)
% ls ~log/apache2
(/var/log/apache2 ディレクトリの内容表示)
% cd ~log
% pwd
/var/log

ほかにも、cygwin だと以下のような設定をしておくと ~desktop でデスクトップフォルダを扱えるようになります。

hash -d desktop="$(cygpath --desktop)"
77
74
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
77
74

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?