1
1

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 3 years have passed since last update.

aliasを設定してサクッとディレクトリを移動しよう!!

Posted at

開発規模が大きくなる
行きたいディレクトリまで時間がかかる
そんな時サクッと移動できる方法は無いかと探していたら、
下記の手法がありました。

ホームディレクトリで下記コマンドを実行

vim .bash_profile

追加する
raku : 好きな名前をつける
cd /var/www/html/ : 移動したいディレクトリのルートを設定

alias raku="cd /var/www/html/"

下記コマンドを実行
このコマンドで記憶させる。

source .bash_profile

これでホームディレクトリで 
raku
と入力すると
/var/www/html/
に移動できます。

1
1
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
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?