ファイル作成

記事の内容

概要

touchコマンドは、ファイルを作成するコマンです。

touchの説明図
touch
ディレクトリ階層

dir
└─ sample1.txt

【dirディレクトリにいる場合】

[tomoji@10moji-blog.com dir]$ ls
sample1.txt

[tomoji@10moji-blog.com dir]$ touch sample2.txt

[tomoji@10moji-blog.com dir]$ ls
sample1.txt sample2.txt

【ファイル作成後】

ディレクトリ階層

dir
├─ sample1.txt
└─ sample2.txt

オプション一覧

オプション説明
-d日付指定をしてファイルを作成

-d

dオプションは、日付指定をしてファイルを作成します。

touch -d
ディレクトリ階層

dir

【dirディレクトリにいる場合】

[tomoji@10moji-blog.com dir]$ touch -d "2024-1-23 12:34" sample.txt

[tomoji@10moji-blog.com dir]$ ll
-rw-r--r-- 1 tomoji tomoji 0 Jan 23 12:34 sample.txt

【ファイル作成後】

ディレクトリ階層

dir
└─ sample1.txt

記事の内容
閉じる