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

https://github.com/forscht/sh


https://github.com/forscht/sh

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

# Collection of shell scripts I'm using to setup my daily drivers on new machine

#### Install docker on Debian
```shell script
bash -c "$(wget -O- https://raw.githubusercontent.com/iroguesniper/sh/master/debian/docker.sh)"
```

#### Generate ssh-rsa key for access to github
```shell script
bash -c "$(wget -O- https://raw.githubusercontent.com/iroguesniper/sh/master/gen_github_key.sh)"
```

#### Install cascdia[Microsoft terminal fonts] fonts
```shell script
bash -c "$(wget -O- https://raw.githubusercontent.com/iroguesniper/sh/master/cascdia_font.sh)"
```

#### Install oh my zsh on debian based distor with auto-complete plugin
```shell script
bash -c "$(wget -O- https://raw.githubusercontent.com/iroguesniper/sh/master/oh_my_zsh_debian_ubuntu.sh)"
```

#### Install nodejs v12 on debian based distro
```shell script
bash -c "$(wget -O- https://raw.githubusercontent.com/forscht/sh/master/node12_debian_distro.sh)"
```

#### Install nodejs v16 on debian based distro
```shell script
bash -c "$(wget -O- https://raw.githubusercontent.com/forscht/sh/master/node16_debian_distro.sh)"
```

#### Install latest docker on ubuntu 18.04 based distro
```shell script
bash -c "$(wget -O- https://raw.githubusercontent.com/iroguesniper/sh/master/ubuntu1804/docker_ubuntu_based_distro.sh)"
```

#### Install latest docker on ubuntu 20.04 based distro
```shell script
bash -c "$(wget -O- https://raw.githubusercontent.com/iroguesniper/sh/master/ubuntu2004/docker_ubuntu_based_distro.sh)"
```