1
0
Fork 0
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:
Marco Bonelli 2019-01-18 21:30:30 +01:00 committed by Starbeamrainbowlabs
parent 06f4221324
commit e7053c20b2

23
pages.it/common/ar.md Normal file
View 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}}`