1
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 1 year has passed since last update.

基本ディレクトリコマンド一覧

Posted at

基本ディレクトリコマンド一覧

自分のためによく使うやつを置いときます!

現在のディレクトリを確認

A. pwd

ルートディレクトリ

A. cd/

ホームディレクトリ

A. cd~

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

A. cd..  or 相対パス

ディレクトリの内容

A. ls でリストが出るこれによりディレクトリ内のファイルが確認できる

隠しファイル

ps.隠しファイルを用いる事でOSの重要なフォルダを誤って削除しないようにしたり、重要な情報を隠せる!

A. ls -a

詳細なリスト形式

A. ls -l/etc

ディレクトリの作成

A. mkdir (ディレクトリ名:例 mkdir cook)

ディレクトリの削除

A.rm -r (例 rm -r cook/)

このコマンドは、rm コマンドを使用して"cook"ディレクトリを削除するものです。"-r" オプションを使用すると、cook ディレクトリ内にあるすべてのファイルやサブディレクトリを再帰的に削除します。ただし、この操作は取り消せないため、慎重に実行してください

強制的的に終了

A. control + C

このコマンドを使用すると入力を求められた際やいろんな場面で処理を終了させる事だできる

ファイルの新規作成  

A. touch (ファイル名)

ファイルの中身を出力

A.cat (ファイル名)

他にもいろんなコマンドがありますが基本中の基本はざっとこんな感じです!!  

最後に  

今回描かさせてもらった経緯と言いますか自分がコマンドを知りたての時にこういったシンプルに羅列したものが欲しかったので書かさせていただきました、この他にも "-a"などを使ったりして意味が変わってきたりするのでまずはこれで用語を知っていただけたらなと思います!  
最後までご覧いただきありがとうございました〜

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?