bashrc/README.md
2022-11-09 15:28:30 +02:00

28 lines
886 B
Markdown

# bashrc
## Download
### Automated
#### cURL
`curl https://git.72.lv/eriks/bashrc/raw/branch/master/download.sh | bash`
#### wget
`wget -qO - https://git.72.lv/eriks/bashrc/raw/branch/master/download.sh | bash`
### Manual
#### cURL
```
curl -Os "https://git.72.lv/eriks/bashrc/raw/branch/master/.bash_profile"
curl -Os "https://git.72.lv/eriks/bashrc/raw/branch/master/.bash_logout"
curl -Os "https://git.72.lv/eriks/bashrc/raw/branch/master/.bash_aliases"
curl -Os "https://git.72.lv/eriks/bashrc/raw/branch/master/.bashrc"
```
#### wget
```
wget "https://git.72.lv/eriks/bashrc/raw/branch/master/.bash_profile" -O .bash_profile
wget "https://git.72.lv/eriks/bashrc/raw/branch/master/.bash_logout" -O .bash_logout
wget "https://git.72.lv/eriks/bashrc/raw/branch/master/.bash_aliases" -O .bash_aliases
wget "https://git.72.lv/eriks/bashrc/raw/branch/master/.bashrc" -O .bashrc
```