0
0

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.

Command Lineの基本コマンド

Last updated at Posted at 2021-11-07
#ファイルの作成
  touch ファイル名

#ファイルの内容を確認する
  cat ファイル名

#ディレクトリ(フォルダ)を作成
  mkdir ディレクトリ名 

#ディレクトリの移動 
  cd ディレクトリ名

#一つ上のディレクトリに移動
  cd ..

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

#ルートディレクトリからカレントディレクトリまでの階層を表示
  pwd

#ファイル、ディレクトリを表示
  ls

#ファイルの移動
  mv 移動元のファイル名 移動先のディレクトリ名

#ディレクトリの移動
  mv -r 移動元のディレクトリ名 移動先のディレクトリ名

#ファイル名の変更
  mv 変更元のファイル名 新しいファイル名

#ディレクトリ名の変更
  mv -r 変更元のディレクトリ名 新しいディレクトリ名

#ファイルのコピー
  cp コピー元のファイル名 新しいファイル名

#ディレクトリのコピー
  cp コピー元のディレクトリ名 新しいディレクトリ名

#ファイルの削除
  rm 削除するファイル名

#ディレクトリの削除
  rm -r 削除するディレクトリ名

*補完機能・・・入力途中でTabキーを押すと残りのファイル名を補完してくれる
*⬆️キーで過去に入力したコマンドを入力できる

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?