An open API service indexing awesome lists of open source software.

https://github.com/harshsinghvi/manage_ssh.sh

Script to initialise basic configs and import keys in new systems and VMs
https://github.com/harshsinghvi/manage_ssh.sh

Last synced: about 1 month ago
JSON representation

Script to initialise basic configs and import keys in new systems and VMs

Awesome Lists containing this project

README

        

# manage_ssh.sh

> scripts written by ChatGPT
> Use at your own risk

## INIT SSH SERVICE

``` bash
curl -sSL "https://raw.githubusercontent.com/harshsinghvi/manage_ssh.sh/master/run.sh" | bash -
```

## Import keys only

```bash
echo "# imported keys" >> $HOME/.ssh/authorized_keys; curl -sSL "https://github.com/harshsinghvi.keys" | tee -a $HOME/.ssh/authorized_keys
```