Linux中一切皆文件
touch
创建文件
mkdir
创建目录
-p 递归创建
-v 显示详情
cp
拷贝文件
-v 详细显示命令执行操作
-r 递归处理目录与子目录
-p 保留原文件或目录属性
mv
移动文件|对文件进行改名
rm
删除文件或目录
-f 递归
-v 强制删除
-r 显示详细过程
*
表示通配符,表示所有的意识
rm -f file* #能删除名字是file开始的,后面是啥都不重要,会全部被删除
rm -f *.pdf #删除所有.pdf结尾的文件
rm -f ./* #删除当前目录下的所有文件
学习使用命令
实验:
1.创建了一推的文件,文件要进行分门别类存储起来。
1) 创建一推文件 { /data/filea-filez }
2) 创建一个目录 { /data/dir }
3) 将文件剪贴到对应目录
4) 删除文件 { /data/dir/* }
[root@oldwang ~]# mkdir /data
[root@oldwang ~]# touch /data/filea{a..z}
[root@oldwang ~]# mkdir /data/dir
[root@oldwang ~]# mv /data/filea{a..z} /data/dir/
[root@oldwang ~]# ll /data/dir/
总用量 0
-rw-r--r--. 1 root root 0 3月 5 23:56 fileaa
-rw-r--r--. 1 root root 0 3月 5 23:56 fileab
-rw-r--r--. 1 root root 0 3月 5 23:56 fileac
-rw-r--r--. 1 root root 0 3月 5 23:56 filead
-rw-r--r--. 1 root root 0 3月 5 23:56 fileae
-rw-r--r--. 1 root root 0 3月 5 23:56 fileaf
-rw-r--r--. 1 root root 0 3月 5 23:56 fileag
-rw-r--r--. 1 root root 0 3月 5 23:56 fileah
-rw-r--r--. 1 root root 0 3月 5 23:56 fileai
-rw-r--r--. 1 root root 0 3月 5 23:56 fileaj
-rw-r--r--. 1 root root 0 3月 5 23:56 fileak
-rw-r--r--. 1 root root 0 3月 5 23:56 fileal
-rw-r--r--. 1 root root 0 3月 5 23:56 fileam
-rw-r--r--. 1 root root 0 3月 5 23:56 filean
-rw-r--r--. 1 root root 0 3月 5 23:56 fileao
-rw-r--r--. 1 root root 0 3月 5 23:56 fileap
-rw-r--r--. 1 root root 0 3月 5 23:56 fileaq
-rw-r--r--. 1 root root 0 3月 5 23:56 filear
-rw-r--r--. 1 root root 0 3月 5 23:56 fileas
-rw-r--r--. 1 root root 0 3月 5 23:56 fileat
-rw-r--r--. 1 root root 0 3月 5 23:56 fileau
-rw-r--r--. 1 root root 0 3月 5 23:56 fileav
-rw-r--r--. 1 root root 0 3月 5 23:56 fileaw
-rw-r--r--. 1 root root 0 3月 5 23:56 fileax
-rw-r--r--. 1 root root 0 3月 5 23:56 fileay
-rw-r--r--. 1 root root 0 3月 5 23:56 fileaz
[root@oldwang ~]# rm -rf /data/dir/*
[root@oldwang ~]# ll /data/dir/
总用量 0
[root@oldwang ~]#