LoginSignup
4
2

More than 3 years have passed since last update.

ついさっきまでいたディレクトリに戻るLinuxコマンド

Last updated at Posted at 2021-02-27
$ cd -

で、ついさっきまでいたディレクトリに戻ることができます。

例えばカレントディレクトリが/Users/user_name/Pictures/summerの場合

$ pwd
/Users/user_name/Pictures/summer

# いったん別のディレクトリに移動
$ cd /bin 
$ pwd
/bin

#ついさっきまでいたディレクトリに戻る
$ cd - 
$ pwd
/Users/user_name/Pictures/summer

こんな便利なコマンドがあるなんて知らなかったです😂

参考
https://linuxjourney.com/lesson/change-directory-cd-command

4
2
2

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
4
2