Linux touch command usage examples

Linux touch command usage examples

Detailed explanation of linux touch command:

1. Command function:

Creation and modification timestamps of files or directories

2. Command syntax:

touch [options] [file name or directory name]

3. Command parameters:

-a only changes the access time of the file.

-c or --no-create does not create non-existent files.

-d Use the specified date and time instead of the current time

-m means to modify the Modify time instead of the Access time

-r file Use the timestamp (access, modify) of the specified file to update the timestamp of the file (access, modify)

Note: access indicates the time when the file was last accessed (only accessed, no changes were made)

modify indicates the time when the file was last modified

change indicates the time when the file attributes were last changed, including permissions, size, attributes, etc.

-t changes the time to the date specified by the parameter, such as: 07081556 means 15:56 on July 8

4. Usage examples:

Create a non-existent file, such as in the /data directory:

1.png

Modify the access time of the file, such as modifying the access time of westoslinux in the figure above

2.png

Modify the modify time of a file, such as modifying the modify time of the /data/westoslinux file

3.png

Use the specified time to change the access or modify time of a file or directory. For example, to change the access time of the file in the figure above to 2012-07-15 08:30:30, to change the modify timestamp, just change the parameter a to m.

4.png

The above is the detailed content of the detailed explanation of the Linux touch command. For more information, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of 9 useful touch command examples in Linux
  • Detailed explanation and usage of Linux touch and chattr commands
  • A simple Linux command touch
  • One shell command a day Linux text operation series - touch command usage

<<:  The implementation process of ECharts multi-chart linkage function

>>:  MySQL partitioning practice through Navicat

Recommend

Solve MySQL deadlock routine by updating different indexes

The previous articles introduced how to debug loc...

Solution to MySQL 8.0 cannot start 3534

MySQL 8.0 service cannot be started Recently enco...

vue front-end HbuliderEslint real-time verification automatic repair settings

Table of contents ESLint plugin installation in H...

HTML uses marquee to achieve text scrolling left and right

Copy code The code is as follows: <BODY> //...

Detailed explanation of the MySQL MVCC mechanism principle

Table of contents What is MVCC Mysql lock and tra...

How to modify the user and group of a file in Linux

In Linux, when a file is created, the owner of th...

Detailed example code of mysql batch insert loop

background A few days ago, when I was doing pagin...

The front-end must know how to lazy load images (three methods)

Table of contents 1. What is lazy loading? 2. Imp...

CSS to achieve Tik Tok subscription button animation effect

I was watching Tik Tok some time ago and thought ...

Detailed tutorial on installing MySQL database on Alibaba Cloud Server

Table of contents Preface 1. Uninstall MySQL 2. I...

JavaScript to achieve fireworks effects (object-oriented)

This article shares the specific code for JavaScr...

Some key points of website visual design

From handicraft design to graphic design to web de...

Method of building docker private warehouse based on Harbor

Table of contents 1. Introduction to Harbor 1. Ha...

Set IE8 to use IE7 style code

<meta http-equiv="x-ua-compatible" co...