Linux系统中如何一次创建和删除多个文件/文件夹
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux系统中如何一次创建和删除多个文件/文件夹相关的知识,希望对你有一定的参考价值。
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系统中如何一次创建和删除多个文件/文件夹的主要内容,如果未能解决你的问题,请参考以下文章
如何创建/修改远程仓库 + 如何删除远程仓库 + 如何删除远程仓库中的某个文件或文件夹 + 如何使用git将本地仓库连接到多个远程仓库