15
10

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.

ターミナル起動時に、ホームディレクトリではなく任意のディレクトリをデフォルトに設定する

Last updated at Posted at 2018-08-26

はじめに

ターミナルを起動するとデフォルトではホームディレクトリが指定された状態です。
そこからcd PATH_OF_YOUR_DIRなどと毎回打つのは面倒です。
そこで本稿ではホームディレクトリではなく任意のディレクトリをデフォルトに設定する2パターンの方法についてご紹介します。

1

まず最もわかりやすい方法は、ターミナルの環境設定から設定する方法です。

  1. ターミナルを起動します。
  2. メニューから「ターミナル->環境設定...->プロファイル->シェル」へ移動します。
  3. 「コマンドを実行」のチェックボックスをチェックし、右隣の枠内にcd PATH_OF_YOUR_DIRを入力します(例 「cd /Users/USER_NAME/Documents/sandbox」)。

以上で、起動時にいつも入力したコマンドが実行され特定のディレクトリに移動した状態になります。

2

次に、ホームディレクトリのbash_profileにコマンドを書き込んで設定する方法です。
前項ではcd PATH_OF_YOUR_DIRというコマンドの実行結果も毎回ターミナルに表示されます。
これがわずらわしいと感じる方は以下の方法を試してください。

  1. ターミナルを起動します。
  2. echo "cd PATH_OF_YOUR_DIR" >> ~/.bash_profileを実行します(例 「echo "cd /Users/USER_NAME/Documents/sandbox" >> ~/.bash_profile」)。

以上で、起動時に特定のディレクトリに移動した状態になり、コマンドの実行結果は表示されません。

参考

Set the default directory in mac terminal

15
10
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
15
10

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?