ameeeee
10/3/2019 - 2:01 PM

コマンドライン 学習メモ

// ファイル作成
touch index.html

// ファイルの中身を表示
cat index.html

// ディレクトリ作成 make directory
mkdir about

// ディレクトリの移動 change directory
cd about

// カレントディレクトリの表示 print working directory
pwd

// 一つ子のディレクトリの中身を表示 list
ls

// 一つ上の階層に移動
..

// ホームディレクトリに移動
cd

// ファイル・ディレクトリの移動 move
// mv 移動させるファイル・ディレクトリ名 移動先
mv index.html about

// ファイル名・ディレクトリ名の変更 move
mv index.html test.html

// ファイル・ディレクトリをコピー cp
cp コピーするファイル 新しく作るファイル
cp index.html test.html

//  ディレクトリをコピーする場合は-rをつける
cp -r about test

//  ファイル・ディレクトリの削除 remove
rm about.html

//  ディレクトリの削除には-rをつける
rm -r test