https://github.com/forscht/sh
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/forscht/sh
- Owner: forscht
- Created: 2020-01-18T10:10:50.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2021-11-10T22:47:14.000Z (over 4 years ago)
- Last Synced: 2025-03-11T08:29:08.319Z (over 1 year ago)
- Language: Shell
- Size: 10.7 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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)"
```