Archive for 'Linux'
Linux Mint Helena: what happened to bashrc??
For some reason my version of Mint Helena does not create a bashrc file in my home directory…????
Instead there is a default one being used, found here: /etc/bash.bashrc
To add aliases and what not for my user account I added the following to this file:
# Added by ae - load aliases if they exist
if [ -f ~/.bash_aliases ]; then
. ~/.bash_aliases
fi
Logging Kohana sites
Add this to your bash aliases for quickly seeing whats happening in the current log.
alias klogger='tail -f -s 5 /home/ae/workspace/eventarc/www/logs/`date +%Y-%m-%d`.log.php'