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.

Macのターミナルでたまに使うコマンド一覧 ファイル操作編

Posted at

ファイルの更新時間の変更 touch(touch)

ファイルのタイムスタンプを現在日時に変更するコマンド。ファイルが存在しない場合は中身が空の0バイトのファイルを作成する。

touch [オプション] ファイル名

書式例

touch
touch abc.txt

オプション

-t
touch -t 11141200 abc # ファイルの更新時間を指定。時間は[MMDDhhmm]

ファイルの先頭の一部の取得 head(head)

ファイルの先頭の一部を閲覧するためのコマンド。エディタを使用しなくても確認できる。

head [オプション] ファイル名

書式例

head
head abc.txt

オプション

-n
head -n 10 abc # 先頭から指定した行数を出力。例では10行
-c
head -c 100 abc # 先頭から指定したバイト数を出力。例では100バイト

ファイルの末尾の一部の取得 tail(tail)

ファイルの末尾の一部を閲覧するためのコマンド。エディタを使用しなくても確認できる。

tail [オプション] ファイル名

書式例

tail
tail abc.txt

オプション

-n
tail -n 10 abc # 末尾から指定した行数を出力。例では10行
-c
tail -c 100 abc # 末尾から指定したバイト数を出力。例では100バイト
-f
tail -f abc # ファイルの状態をリアルタイムでモニタリングする
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?