-- Leo's gemini proxy

-- Connecting to freeshell.de:1965...

-- Connected

-- Sending request

-- Meta line: 20 text/gemini;lang=en-GB

ar


> Create, modify, and extract from archives (`.a`, `.so`, `.o`).

More information.


Extract all members from an archive:

ar -x {path/to/file.a}

List the members of an archive:

ar -t {path/to/file.a}

Replace or add files to an archive:

ar -r {path/to/file.a} {path/to/file1.o} {path/to/file2.o}

Insert an object file index (equivalent to using `ranlib`):

ar -s {path/to/file.a}

Create an archive with files and an accompanying object file index:

ar -rs {path/to/file.a} {path/to/file1.o} {path/to/file2.o}


> Copyright © 2014—present the tldr-pages team and contributors.

> This work is licensed under the Creative Commons Attribution 4.0 International License (CC-BY).

CC-BY



-- Response ended

-- Page fetched on Fri May 17 01:29:38 2024