Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade Teachers Spaces Get Certified Upgrade Teachers Spaces
   ❮   
     ❯   

Bashtouch Command - Change File Timestamps


Using thetouch Command

Thetouch command is used to change file timestamps or create an empty file if it doesn't exist.

It's often used to create placeholder files or update timestamps for build systems.


Basic Usage

To update the access and modification times of a file, usetouch filename:

Example

touch file.txt

Options

Thetouch command has options to change how it works:

  • -a - Update only when the file was last read
  • -m - Update only when the file was last changed
  • -t - Set the timestamp to a specific time
  • -c - Do not create any files

-a Option: Change Access Time

The-a option lets you update the access time of a file.

Example: Change Access Time

touch -a file.txt


-m Option: Change Modification Time

The-m option lets you update only the modification time of a file.

Example: Change Modification Time

ls -l-rw-r--r-- 1 user 197609 208 Apr  9 06:24 my_file.txttouch -m my_file.txtls -l-rw-r--r-- 1 user 197609 208 Apr  9 08:25 my_file.txt

-t Option: Set Specific Timestamp

The-t option allows you to set the timestamp to a specific time.

Example: Set Specific Timestamp

ls -l-rw-r--r-- 1 user 197609 208 Apr  9 06:24 my_file.txttouch -t 202501010000 my_file.txtls -l-rw-r--r-- 1 user 197609 208 Jan  1 00:00 my_file.txt

-c Option: Do Not Create Files

The-c option tellstouch not to create any files if they do not exist.

This is useful when you want to update timestamps without accidentally creating new files.

Example: Do Not Create Files

touch -c non_existent_file.txt

Usingtouch with Wildcards

Wildcards allow you to update timestamps on multiple files at once.

For example,touch *.txt will update the timestamps of all text files in the directory.

Example: Using Wildcards

touch *.txt



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2025 Movatter.jp