LoginSignup
4
3

More than 5 years have passed since last update.

ディレクトリを作成と同時に作成したディレクトリに移動する

Posted at
普通に書くと
$ mkdir test_dir
$ cd test_dir
$ pwd
[パス]/test_dir
よく使われる手法
$ mkdir test_dir && cd $_ && pwd
[パス]/test_dir

$_:一つ前のコマンドの引数を持っている
pwdは省略可

参考
http://blog.tstylestudio.com/2013/06/26/mkdir%E3%81%A8cd%E3%82%92%E5%90%8C%E6%99%82%E3%81%AB%E5%AE%9F%E8%A1%8C%E3%81%97%E3%81%9F%E3%81%84%E6%99%82/

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