mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-08-01 09:35:30 +02:00

* arch: add Spanish translation * arch: fix spacing in Spanish translation Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * arch: minor fix in "See also" description Signed-off-by: GitHub <noreply@github.com> --------- Signed-off-by: GitHub <noreply@github.com> Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
17 lines
354 B
Markdown
17 lines
354 B
Markdown
# arch
|
|
|
|
> Display the name of the system architecture, or run a command under a different architecture.
|
|
> See also: `uname`.
|
|
> More information: <https://www.unix.com/man-page/osx/1/arch/>.
|
|
|
|
- Display the system's architecture:
|
|
|
|
`arch`
|
|
|
|
- Run a command using x86_64:
|
|
|
|
`arch -x86_64 "{{command}}"`
|
|
|
|
- Run a command using arm:
|
|
|
|
`arch -arm64 "{{command}}"`
|