lazysphere/readme.md

36 lines
931 B
Markdown
Raw Normal View History

2023-04-27 18:41:06 +00:00
# lazysphere
A terrible busybox/gnu coreutils clone.
Currently the only supported commands are:
2023-05-12 22:35:41 +00:00
`dd`, `cat`, `yes`, `echo`, `printf`, `id`, `groups`, `ls`, `tail`, `head`, `ed`, `tee`, `true`, `false`, `tee`, `whoami`,
2023-05-15 01:43:02 +00:00
`wc`, `xargs`, `tac`, `rm`, `cp`, `mkdir`, `mv`, `grep`, `chown`, `chmod`, `sync`, `su`
2023-04-27 18:41:06 +00:00
## How to
`usage: lazysphere [function [arguments]...]`
Or you can also link lazysphere to a file of a command name, and that new file will act like a binary of that command!
## License
This project is Licensed under the [GPLv3](https://www.gnu.org/licenses/gpl-3.0.en.html)
## Compilation
ritfetch only runs on systems with `curl` installed
2023-05-01 23:14:35 +00:00
Make sure to have `gcc` and `make` (`gmake` for bsd) installed, and then run
2023-04-27 18:41:06 +00:00
```shell
$ make # compiles the program
$ sudo make install # installs the binary
```
If you wish to remove the program, you can run
```shell
$ sudo make uninstall # removes the binary
```