Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/balletie/oshi
Mini shell which doesn't do much. **Don't use this.**
https://github.com/balletie/oshi
c do-not-use shell
Last synced: 20 days ago
JSON representation
Mini shell which doesn't do much. **Don't use this.**
- Host: GitHub
- URL: https://github.com/balletie/oshi
- Owner: Balletie
- Created: 2015-02-21T16:35:42.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2015-02-21T17:34:01.000Z (over 9 years ago)
- Last Synced: 2023-05-16T22:01:06.010Z (over 1 year ago)
- Topics: c, do-not-use, shell
- Language: C
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
OSHi, a minimal shell
=====================Bonus assignment for the Operating Systems course.
##Features
Currently supports:
* Execution of commands (optionally in background)
* Two builtins: history and exit
* Command substitution: use !! and !N shorthand for executing the last or N-th
command.##Compiling and Installation
Run `make` to compile, or `make install` to compile and install in the $out/bin
directory. If $out is not defined, it installs in the current directory. Use
`make uninstall` to uninstall the program (only works if you installed in a
directory other than the current directory).If you use Nix, run
```
nix-env -i -f default.nix
```to install, and
```
nix-env -e OSHi
```to uninstall.