linux | bash - check cpu architecture
Bash[Edit]
+
0
-
0
Linux | Bash - check CPU architecture
1 2 3 4 5 6 7 8 9 10 11arch # Example output 1 (AMD Ryzen 5900x): # # x86_64 # Example output 2 (Raspberry PI 5): # # aarch64
[Edit]
+
0
-
0
Linux | Bash - check CPU architecture
1 2 3 4 5 6 7 8 9 10 11uname -m # Example output 1 (AMD Ryzen 5900x): # # x86_64 # Example output 2 (Raspberry PI 5): # # aarch64