diff options
author | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-27 14:41:06 -0400 |
---|---|---|
committer | Tyler Murphy <tylerm@tylerm.dev> | 2023-04-27 14:41:06 -0400 |
commit | aa8f616065f6e2095ac6a80f61488ecbdb50fc77 (patch) | |
tree | 88ac69b6401a80b94bacdf02b281b6dac7f654d3 | |
parent | initial (diff) | |
download | lazysphere-aa8f616065f6e2095ac6a80f61488ecbdb50fc77.tar.gz lazysphere-aa8f616065f6e2095ac6a80f61488ecbdb50fc77.tar.bz2 lazysphere-aa8f616065f6e2095ac6a80f61488ecbdb50fc77.zip |
makefile
-rw-r--r-- | readme.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..0d07854 --- /dev/null +++ b/readme.md @@ -0,0 +1,34 @@ + +# lazysphere + +A terrible busybox/gnu coreutils clone. + +Currently the only supported commands are: +`dd`, `cat`, `yes` + +## 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 + +Make sure to have `gcc` and `make` installed, and then run + +```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 +``` |