-
Move the existing
$HOME/.bashrcfile into this repository and name itbashrc(removing the period "." from the filename will make it visible by default on all filebrowser systems). Don't forget togit add bashrcto ensure the file is tracked in the repository before committing. -
There is a template
bash_profilein this repository. Add logic to thebash_profilethat checks to see if the file$HOME/.bashrcexists, if and only if it does exist, thensourceit from thebash_profilefile. -
Add "vi mode" command line editing to your
bash_profile. -
Add the following alias exactly as is appears to the first line of
bashrc:alias lla='ls -la'
If you would like to check to see if your edits to bash_profile and bashrc are correct run
./install.sh
source $HOME/.bash_profile
alias lla > lla.txtfollowed by the command python test.py at the command prompt. A status message of OK indicates you have the correct answer.