# 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 ```