ar: add link

This commit is contained in:
marchersimon
2021-03-31 12:10:38 +02:00
committed by Starbeamrainbowlabs
parent be27e77a15
commit bc1219f3c9
4 changed files with 9 additions and 5 deletions

View File

@@ -1,23 +1,24 @@
# ar
> Create, modify, and extract from archives (.a, .so, .o).
> More information: <https://man.archlinux.org/man/ar.1>.
- Extract all members from an archive:
`ar -x {{libfoo.a}}`
`ar -x {{path/to/archive.a}}`
- List the members of an archive:
`ar -t {{libfoo.a}}`
`ar -t {{path/to/archive.a}}`
- Replace or add files to an archive:
`ar -r {{libfoo.a}} {{foo.o}} {{bar.o}} {{baz.o}}`
`ar -r {{path/to/archive.a}} {{path/to/file1.o}} {{path/to/file2.o}}`
- Insert an object file index (equivalent to using `ranlib`):
`ar -s {{libfoo.a}}`
`ar -s {{path/to/archive.a}}`
- Create an archive with files and an accompanying object file index:
`ar -rs {{libfoo.a}} {{foo.o}} {{bar.o}} {{baz.o}}`
`ar -rs {{path/to/archive.a}} {{path/to/file1.o}} {{path/to/file2.o}}`