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?

linuxコマンド 学習メモ その①

Posted at

最近linuxコマンドの勉強を始めたので必要そうなものをアウトプット
追加で学んだオプションなどあれば都度追記

cd(change directory)

階層の移動

C配下hogeフォルダへ移動
cd C:\hoge
一つ上の階層に移動
cd ..

ls

ディレクトリ内の情報取得

全てのディレクトリの表示
ls -a
-aオプションの機能に加え、所有者も表示
ls -l

cat(concatenate)

ファイルの中身の参照

hoge.txt内の中身を行番号をつけて表示
cat -n hoge.txt

tac

ファイルの中身を逆順で表示

tac hoge.txt

touch

ファイル作成、タイムスタンプ更新

hoge.txtの作成
touch hoge.txt

※hoge.txtが既に存在した場合はタイムスタンプが更新される

hoge.txtのタイムスタンプを任意の日時に更新
touch -t YYYYMMDDHHmm.ss hoge.txt

file

ファイルの種類の特定

hogeのファイルの種類を特定する
touch hoge
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?