1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages.zh/common/file.md

25 lines
607 B
Markdown
Raw Permalink Normal View History

2019-02-26 11:13:08 +08:00
# file
> 确定文件类型。
> 更多信息:<https://manned.org/file>.
2019-02-26 11:13:08 +08:00
- 提供指定文件类型的描述,对于没有文件扩展名的文件可以正常工作:
2019-02-26 11:13:08 +08:00
`file {{文件名}}`
- 查看压缩文件并确定其中的文件类型:
2019-02-26 11:13:08 +08:00
`file {{[-z|--uncompress]}} {{xxx.zip}}`
2019-02-26 11:13:08 +08:00
- 允许文件与特殊文件或设备文件一起使用:
2019-02-26 11:13:08 +08:00
`file {{[-s|--special-files]}} {{文件名}}`
2019-02-26 11:13:08 +08:00
- 不要在第一个文件类型匹配时停止;继续执行直到文件结束:
2019-02-26 11:13:08 +08:00
`file {{[-k|--keep-going]}} {{文件名}}`
2019-02-26 11:13:08 +08:00
2022-10-17 13:18:15 +05:30
- 确定文件的 MIME 编码类型:
2019-02-26 11:13:08 +08:00
`file {{[-i|--mime]}} {{文件名}}`