1
2

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 3 years have passed since last update.

Macの基本コマンド

Posted at

よく忘れるので備忘録として記事を残します。

cdコマンド

$ cd ~/  #ホームディレクトリに移動する
$ cd ..  #一つ上の階層のファイルに移動する

pwdコマンド

$ pwd  #カレントディレクトリのパスを表示する

mkdirコマンド

$ mkdir sample #空のディレクトリを作成

touchコマンド

$ touch /sample/sample.html #空のファイルを作成

lsコマンド

$ ls    #カレントディレクトリにあるファイルやディレクトリを表示
$ ls -a #隠しファイルも含めファイルやディレクトリを全てを表示
$ ls -l #ファイルやディレクトリの詳細も同時に表示

mvコマンド

$ mv sample.html bin/  #sample.htmlというファイルを相対パスでbin/に移動
$ mv sample.html sample_app.html  #sample.htmlというファイルをsample_app.htmlに名前変更

rmコマンド

$ rm sample.html #ファイルを削除
$ rm -r sample   #ディレクトリを中身ごと削除
$ rm -f sample   #ファイルを警告なしで削除
$ rm -rf sample  #ディレクトリを中身ごと警告なしで削除

sourceコマンド

$ source ~/.bash_profile  #ホームディレクトリにある.bash_profileに書き込んだ設定を読み込み有効にする
$source .bash_profile  #カレントディレクトリにある.bash_profile設定を読み込み有効にする
1
2
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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?