https://github.com/cflems/deadbeef-shell
Small, minimal shell written in assembly.
https://github.com/cflems/deadbeef-shell
Last synced: 3 months ago
JSON representation
Small, minimal shell written in assembly.
- Host: GitHub
- URL: https://github.com/cflems/deadbeef-shell
- Owner: cflems
- License: mit
- Created: 2015-09-05T22:25:31.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2020-10-19T01:39:06.000Z (over 4 years ago)
- Last Synced: 2025-01-08T01:33:48.449Z (5 months ago)
- Language: Assembly
- Size: 66.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# deadbeef-shell
The deadbeef shell is a fast, minimalist shell written in x86\_64
Assembly for Linux. Currently it contains two builtins: cd and exit. It
can execute any program as a direct path (/path/to/program), from the PATH
variable (progam) or as a relative path (./program). Arguments are
separated by spaces.
To do (lowest to highest priority):
- Implement environment variables, pass them to programs and provide
export.
- Implement variables ($variablename).
- Implement providing a file as an argument instead of stdin so that the
shell can be used as an interpreter.
- Implement speech marks to separate arguments.