zoukankan      html  css  js  c++  java
  • ③linux基础命令 touch

    touch 创建文件
    touch file 无则创建 有责修改创建时间
    [root@rstx-201 ~]# touch file
    [root@rstx-201 ~]# ll
    -rw-r--r--  1 root root    0 Feb 25 22:28 file
    [root@rstx-201 ~]# touch file
    [root@rstx-201 ~]# ll
    -rw-r--r--  1 root root    0 Feb 25 22:29 file  #有则修改创建时间
    
    touch 同时创建多个文件
    [root@rstx-201 ~]# touch file file1
    [root@rstx-201 ~]# ll
    -rw-r--r--  1 root root    0 Feb 25 22:36 file
    -rw-r--r--  1 root root    0 Feb 25 22:36 file1
    
    [root@rstx-201 ~]# touch {a,b,c}
    [root@rstx-201 ~]# ll
    -rw-r--r--  1 root root    0 Feb 25 22:41 a
    -rw-r--r--  1 root root    0 Feb 25 22:41 b
    -rw-r--r--  1 root root    0 Feb 25 22:41 c
    
    
    touch 同时创建多个文件
    [root@rstx-201 ~]# touch file{1..4}
    [root@rstx-201 ~]# ll
    -rw-r--r--  1 root root    0 Feb 25 22:37 file1
    -rw-r--r--  1 root root    0 Feb 25 22:37 file2
    -rw-r--r--  1 root root    0 Feb 25 22:37 file3
    -rw-r--r--  1 root root    0 Feb 25 22:37 file4
    
    [root@rstx-201 ~]# ll
    -rw-r--r--  1 root root    0 Feb 25 22:39 filea
    -rw-r--r--  1 root root    0 Feb 25 22:39 fileb
    -rw-r--r--  1 root root    0 Feb 25 22:39 filec
    ........
    -rw-r--r--  1 root root    0 Feb 25 22:39 filez
    
  • 相关阅读:
    Alpha冲刺(4/6)
    Alpha冲刺(3/6)
    Alpha冲刺(2/6)
    Alpha冲刺(1/6)
    团队Git现场编程实战
    团队项目-需求分析报告
    团队项目-选题报告
    第二次结对编程作业
    第一次团队展示
    第一次结对编程作业
  • 原文地址:https://www.cnblogs.com/yangtao416/p/14451471.html
Copyright © 2011-2022 走看看