mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-07-23 21:35:27 +02:00

- Also other few changes were made to enhance the translation. - Add missing commands - Fix comands that were changed
17 lines
393 B
Markdown
17 lines
393 B
Markdown
# arch
|
|
|
|
> Muestra el nombre de la arquitectura del sistema, o ejecuta un comando bajo una arquitectura diferente.
|
|
> Vea también: `uname`.
|
|
> Más información: <https://keith.github.io/xcode-man-pages/arch.1.html>.
|
|
|
|
- Muestra la arquitectura del sistema:
|
|
|
|
`arch`
|
|
|
|
- Ejecuta un comando usando x86_64:
|
|
|
|
`arch -x86_64 "{{comando}}"`
|
|
|
|
- Ejecuta un comando usando arm:
|
|
|
|
`arch -arm64 "{{comando}}"`
|