mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-07 01:26:03 +02:00
ar: add Italian translation.
This commit is contained in:
parent
06f4221324
commit
e7053c20b2
1 changed files with 23 additions and 0 deletions
23
pages.it/common/ar.md
Normal file
23
pages.it/common/ar.md
Normal file
|
@ -0,0 +1,23 @@
|
||||||
|
# ar
|
||||||
|
|
||||||
|
> Crea, modifica ed estrai da archivi (.a, .so, .o).
|
||||||
|
|
||||||
|
- Estrai tutti i membri da un archivio:
|
||||||
|
|
||||||
|
`ar -x {{libfoo.a}}`
|
||||||
|
|
||||||
|
- Lista tutti i membri di un archivio:
|
||||||
|
|
||||||
|
`ar -t {{libfoo.a}}`
|
||||||
|
|
||||||
|
- Sostituisci o aggiungi file ad un archvio:
|
||||||
|
|
||||||
|
`ar -r {{libfoo.a}} {{foo.o}} {{bar.o}} {{baz.o}}`
|
||||||
|
|
||||||
|
- Inserisci o sostituisci un indice in un archivio (equivalente ad usare `ranlib`):
|
||||||
|
|
||||||
|
`ar -s {{libfoo.a}}`
|
||||||
|
|
||||||
|
- Crea un archivio con dei file creando anche il relativo indice:
|
||||||
|
|
||||||
|
`ar -rs {{libfoo.a}} {{foo.o}} {{bar.o}} {{baz.o}}`
|
Loading…
Add table
Reference in a new issue