> For the complete documentation index, see [llms.txt](https://til.devjugal.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://til.devjugal.com/linux/get-arch-of-system.md).

# Get Arch Of System

An alternative to `uname -m` to see what is the architecture of the system is `arch`, which is short and self-explaining.

## Example

```bash
arch
x86_64
```

***Source:*** [***RedHat***](https://www.redhat.com/sysadmin/5-linux-commands)
