码迷,mamicode.com
首页 > 系统相关 > 详细

Linux系统中如何一次创建和删除多个文件/文件夹

时间:2019-11-25 16:46:31      阅读:503      评论:0      收藏:0      [点我收藏+]

标签:root   install   top   文件名   删除   如何   documents   ict   roo   

Linux系统中如何一次创建和删除多个文件/文件夹

1.创建/删除多个文件

//连续创建5个文件,文件名为file1、file2、..file5
[root@server ~]# touch file{1..5}
[root@server ~]# ls
anaconda-ks.cfg  Downloads  file3  hello    install.log         Pictures   test
Desktop          file1      file4  hello.c  install.log.syslog  Public     Videos
Documents        file2      file5  hello.o  Music               Templates
[root@server ~]# rm -rf file*

2.创建/删除多个目录

[root@server ~]# mkdir folder{1..5}
[root@server ~]# ls
anaconda-ks.cfg  file1  file5    folder4  hello.o             Pictures   Videos
Desktop          file2  folder1  folder5  install.log         Public
Documents        file3  folder2  hello    install.log.syslog  Templates
Downloads        file4  folder3  hello.c  Music               test

[root@server ~]# rm -rf folder*
[root@server ~]# ls
anaconda-ks.cfg  Downloads  file3  hello    install.log         Pictures   test
Desktop          file1      file4  hello.c  install.log.syslog  Public     Videos
Documents        file2      file5  hello.o  Music               Templates

Linux系统中如何一次创建和删除多个文件/文件夹

标签:root   install   top   文件名   删除   如何   documents   ict   roo   

原文地址:https://blog.51cto.com/9664355/2453125

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!