LoginSignup
1
0

More than 5 years have passed since last update.

Mac ターミナル:よく使うコマンド集

Posted at

コマンド 

ホームディレクトリに移動
$ cd
一つ前のディレクトリに移動
$ cd ..
現在のディレクトリにあるファイルを一覧表示する
$ ls
デスクトップ下のフォルダ(folder01)に移動
$ cd Desktop/folder01
ホームディレクトリに移動
$ cd ~/
ルートディレクトリに移動
$ cd /
カレントディレクトリのフォルダを開く
$ open .
カレントディレクトリのフォルダを開く(linuxの場合)
$ xdg-open .

メモ

ホームディレクトリ、ルートディレクトリ

"~/"はユーザのホームディレクトリを指し、"/"はルートディレクトリを指しています。
root とは管理者のことで、絶対的な権限の持ち主であり、全てのファイル・ディレクトリにアクセスできます。UNIX系の OS では、一般的な操作は root としてではなく、一般ユーザーの権限で作業します。

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