https://github.com/errornointernet/unamefetch
uname in a nicer format, written in x86 assembly.
https://github.com/errornointernet/unamefetch
fetch nasm x86
Last synced: 5 months ago
JSON representation
uname in a nicer format, written in x86 assembly.
- Host: GitHub
- URL: https://github.com/errornointernet/unamefetch
- Owner: ErrorNoInternet
- License: mit
- Created: 2024-03-26T10:20:20.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-08-15T10:49:13.000Z (almost 2 years ago)
- Last Synced: 2025-04-06T16:41:26.011Z (about 1 year ago)
- Topics: fetch, nasm, x86
- Language: Assembly
- Homepage:
- Size: 5.86 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# unamefetch
`uname -a` in a nicer format, written in x86 assembly.
```
$ nasm -f elf unamefetch.asm
$ ld -m elf_i386 unamefetch.o -o unamefetch
$ ./unamefetch
> sysname: Linux
> release: 6.7.10
> machine: x86_64
> nodename: NixBtw
> version: #1-NixOS SMP PREEMPT_DYNAMIC Fri Mar 15 18:22:41 UTC 2024
```