This commit is contained in:
nick
2018-05-23 20:36:33 +08:00
parent 33b05d66d1
commit ecc1b47d85
2 changed files with 15 additions and 1 deletions

View File

@ -1,11 +1,17 @@
#### Linux 的文件类型
1. 普通文件,符号为 `-`
2. 目录,符号为 `d`
3. 字符设备,符号为 `c`
4. 块设备,符号为 `b`
5. 套接字文件,符号为 `s`
6. 软链接文件,类似 `Windows` 系统的快捷方式,删除了并不会影响源文件,符号为 `l`
7. 管道文件,符号为 `p`
补充:常见的文件类型为 `-` `d` `l`