Shortened URL for `https://git.72.lv/eriks/bashrc/raw/branch/master/download.sh` for easier manual entry of the automated command Signed-off-by: eriks <eriks@git.72.lv>
30 lines
961 B
Markdown
30 lines
961 B
Markdown
# bashrc
|
|
|
|
## Download
|
|
### Automated
|
|
Target URL for automated download is `https://git.72.lv/eriks/bashrc/raw/branch/master/download.sh` which has been shortened to `https://72.lv/bashrc`
|
|
|
|
#### cURL
|
|
`curl -L https://72.lv/bashrc | bash`
|
|
|
|
#### wget
|
|
`wget -qO - https://72.lv/bashrc | 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
|
|
```
|
|
|