LoginSignup
5
4

More than 5 years have passed since last update.

cd コマンドかくかたりき

Last updated at Posted at 2015-12-25

はじめに

みんなだいすき cd。
初心忘れるべからず。
(本当に時間がなかった・・・

本気の0ストック狙いでカレンダー最終日を締めたいと思います。

cd コマンド

masahixixi$ pwd
/Users/masahixixi
masahixixi$ cd /
masahixixi$ pwd
/

そりゃそうだ。

masahixixi$ pwd
/Users/masahixixi
masahixixi$ cd /tmp
masahixixi$ cd ..
masahixixi$ pwd
/

そりゃそうだ。

masahixixi$ pwd
/Users/masahixixi
masahixixi$ cd /tmp
masahixixi$ cd ~/
masahixixi$ pwd
/Users/masahixixi

そりゃそうだ。

masahixixi$ ll / | grep test
drwxr-xr-x     2 root  wheel     68 Dec 25 22:21 test
masahixixi$ ln -s /usr/local/bin/ /test/bin
masahixixi$ pwd
/test
masahixixi$ ll
total 8
drwxr-xr-x   3 root  wheel   102 Dec 25 22:25 .
drwxr-xr-x  35 root  wheel  1258 Dec 25 22:21 ..
lrwxr-xr-x   1 root  wheel    15 Dec 25 22:25 bin -> /usr/local/bin/
masahixixi$ cd -L bin
masahixixi$ pwd
/test/bin
masahixixi$ cd ..
masahixixi$ cd -P bin
masahixixi$ pwd
/usr/local/bin

そりゃそうだ。

masahixixi$ pwd
/test
masahixixi$ cd /test2
masahixixi$ pwd
/test2
masahixixi$ cd -
/test
masahixixi$ cd ${OLDPWD}

そりゃそうだ。
ちなみに cd -cd ${OLDPWD} は同じ。

masahixixi$ pwd
/test
masahixixi$ cd ..
masahixixi$ cd tm*
masahixixi$ pwd
/tmp
masahixixi$ cd ..
masahixixi$ cd t*p
masahixixi$ pwd
/tmp

もはや cd の話ではない。
ちなみに test, tmp とあった場合に t* とすると test に移動。
* はアルファベット順の判定。

cd はシンプルですねー

リブセンスアドベントカレンダーの最後はまさかの cd でした。
(時間がなかった・・・本当にすみません。。。。)

5
4
1

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