31 lines
436 B
Markdown
31 lines
436 B
Markdown
|
# RootDO
|
||
|
|
||
|
This little "project" aims to be a very slim alternative to both sudo and doas.
|
||
|
|
||
|
### Installation
|
||
|
|
||
|
```sh
|
||
|
git clone https://github.com/sw1tchbl4d3r/rdo
|
||
|
cd rdo
|
||
|
make
|
||
|
sudo make install
|
||
|
```
|
||
|
|
||
|
After that, you'll have to configure rdo to allow you to use it.
|
||
|
```sh
|
||
|
echo "YourUsername" | sudo tee /etc/rdo/username
|
||
|
```
|
||
|
|
||
|
After that you're good to go!
|
||
|
|
||
|
And to uninstall:
|
||
|
```sh
|
||
|
sudo make uninstall
|
||
|
```
|
||
|
|
||
|
### Usage
|
||
|
|
||
|
```sh
|
||
|
rdo [command]
|
||
|
```
|