admin 管理员组

文章数量: 887021

Windows使用touch命令

    • 背景
      • 临时解决办法
    • GNU CoreUtils简介
    • Windows安装gnuwin32-coreutils
    • 结果验证

背景

Linux下习惯使用touch命令创建文件,但是Windows命令行下没有这个命令,又不想在Windows中使用Linux子系统
寻找到的解决方案是安装GNU CoreUtils


临时解决办法

创建一个touch.cmd的脚本,编码要gbk格式,脚本內容如下:

@ECHO OFF                         :: 关闭命令提示符的输出
IF EXIST %1 (                      :: 如果第一个参数指定的文件存在
    COPY /B %1+,, %1 >nul         :: 拷贝文件到本身,以更新其时间戳
) ELSE (                          :: 否则(如果文件不存在)
    echo. 2>%1                   :: 在当前目录创建空文件,并输出错误信息到该文件
)

该文件复制到C:\\Windows\\System32目录下即可。
打开cmd就可以使用touch命令了。
不过,用了几次就被杀毒软件误杀了。


GNU CoreUtils简介

简介:http://blog.fpliu/it/software/GNU/CoreUtils
官网:https://www.gnu/software/coreutils/
The GNU Core Utilities are the basic file, shell and text manipulation utilities of the GNU operating system. These are the core utilities which are expected to exist on every operating system.

GNU 核心实用程序是 GNU 操作系统的基本文件、shell 和文本操作实用程序。这些是预期存在于每个操作系统上的核心实用程序。

GNU CoreUtils中包含的命令:


Windows安装gnuwin32-coreutils

# 安装gnuwin32-coreutils
choco install gnuwin32-coreutils.portable -y

结果验证

# 查看是否有touch命令
which touch

# 使用touch创建文件
touch test.txt

本文标签: 命令 Windows Touch