An open API service indexing awesome lists of open source software.

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.

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
```