よく忘れるので備忘録として記事を残します。
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設定を読み込み有効にする