1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/ar.md
2016-01-08 09:38:59 +01:00

23 lines
482 B
Markdown

# ar
> Create, modify, and extract from archives (.a .so .o).
- Extract all members from an archive:
`ar -x {{libfoo.a}}`
- List the members of an archive:
`ar -t {{libfoo.a}}`
- Replace or add files to an archive:
`ar -r {{libfoo.a}} {{foo.o}} {{bar.o}} {{baz.o}}`
- Insert an object file index (equivalent to using `ranlib`):
`ar -s {{libfoo.a}}`
- Create an archive with files and an accompanying object file index:
`ar -rs {{libfoo.a}} {{foo.o}} {{bar.o}} {{baz.o}}`