Linux下touch命令的用法
Touch Command Options
a, change the access time only
-c, if the file does not exist, do not create it
-d, update the access and modification times
-m, change the modification time only
-r, use the access and modification times of file
-t, creates a file using a specified time
1.建立一個新的空檔案
# touch sheena
2.建立多個檔案
# touch sheena meena leena
3.只修改access time為現在的時間,-a
# touch -a leena
4.只修改modification time為現在的時間,-m
# touch -m leena
5.如果檔案不存在,避免建立新檔案,-c
# touch -c leena
6.同時精確設定access and modification times,-t
# touch -c -t YYDDHHMM leena
sets the access and modification date and time to a file leena as 17:30 (17:30 p.m.) December 10 of the current year (2012).
# touch -c -t 12101730 leena
7.使用另一個指定文件的access and modifications times設定檔案的時間戳,-r
# touch -r leena meena
8.建立一個新檔案並指定精確的access and modifications times
# touch -t YYMMDDHHMM.SS tecmint
# touch -t 201212101830.55 tecmint
相關文章
- Linux touch命令Linux
- 在 Linux 下 9 個有用的 touch 命令示例Linux
- linux每日命令(10):touch命令Linux
- Linux基礎命令—touchLinux
- Linux基礎命令---touchLinux
- Linux——基礎命令用法(下)Linux
- linux命令下jq的用法簡介Linux
- Linux下more命令高階用法Linux
- Linux下mv命令高階用法Linux
- Linux下crontab命令的用法:sudo crontab -lLinux
- Linux下 ls 命令的高階用法8例Linux
- 每天學一個 Linux 命令(13):touchLinux
- linux中用touch命令建立新檔案Linux
- linux 中 date命令的用法Linux
- linux useradd命令的基本用法Linux
- Linux sed命令用法Linux
- Linux 下使用 killall 命令終止程式的 8 大用法Linux
- rocky與linux的nmcli命令用法Linux
- Linux命令-Sed用法教程Linux
- 常用的Linux命令;Linux常用命令用法及實現方式Linux
- Linux——基礎命令用法(上)Linux
- Linux 命令列:find 的 26 個用法示例Linux命令列
- linux下mail的簡單用法LinuxAI
- linux中查詢find命令的複雜用法Linux
- Linux命令列:cURL的十種常見用法Linux命令列
- linux後臺執行命令:&與nohup的用法Linux
- Linux下Ollama命令Linux
- linux下source命令Linux
- linux下查詢命令的技巧Linux
- 命令列中常見命令用法及explainshell.com的用法命令列AI
- Linux常用命令用法及實現方式Linux
- Linux最常用的5個重啟命令基本用法講解!Linux
- Linux 命令列下的好東西Linux命令列
- Linux下常用命令Linux
- Linux 下 常見操作命令Linux
- Linux下 ln 命令詳解Linux
- linux下的命令列播放器mocLinux命令列播放器
- Linux系統下強大的ethtool命令Linux
- Linux下刪除資料夾的命令Linux