https://github.com/filipmnowak/tail-f
i386 toy/prototype version of tail -f
https://github.com/filipmnowak/tail-f
assembly gnu-linux i386 tail
Last synced: 11 months ago
JSON representation
i386 toy/prototype version of tail -f
- Host: GitHub
- URL: https://github.com/filipmnowak/tail-f
- Owner: filipmnowak
- Created: 2021-02-06T15:35:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-01-19T10:30:43.000Z (over 4 years ago)
- Last Synced: 2025-07-14T22:26:11.004Z (12 months ago)
- Topics: assembly, gnu-linux, i386, tail
- Language: Assembly
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# compile
```
nasm -f elf -o tail-f.o tail-f.asm && ld -m elf_i386 -s -o tail-f tail-f.o
```