1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-06-06 23:46:00 +02:00

ar: add Chinese translation

This commit is contained in:
Starccy 2019-04-02 19:25:49 +08:00 committed by Agniva De Sarker
parent 3752a0bc81
commit 801f431f27

View file

@ -4,20 +4,20 @@
- 从库文件中提取全部成员:
`ar -x {{libfoo.a}}`
`ar -x {{a文件}}`
- 列出库文件中的成员:
`ar -t {{libfoo.a}}`
`ar -t {{a文件}}`
- 替换或添加文件到库文件:
`ar -r {{libfoo.a}} {{foo.o}} {{bar.o}} {{baz.o}}`
`ar -r {{要被添加内容的a文件}} {{o文件1}} {{o文件2}} {{o文件3}}`
- 插入对象文件索引(相当于使用`ranlib`):
`ar -s {{libfoo.a}}`
`ar -s {{a文件}}`
- 使用文件和附带的目标文件索引创建存档:
`ar -rs {{libfoo.a}} {{foo.o}} {{bar.o}} {{baz.o}}`
`ar -rs {{a文件}} {{o文件1}} {{o文件2}} {{o文件3}}`