Merge branch 'master' of github.com:Mkaysi/shell-things

This commit is contained in:
Mika Suomalainen 2013-04-27 10:26:41 +03:00
commit 3ec41c4b28
2 changed files with 8 additions and 0 deletions

3
bashrc
View File

@ -437,10 +437,13 @@ alias cwho="who -H -w -u"
# Upgrading Redhad/Debian
alias yumyup="yum -y check-update;yum -y update;grub2-mkconfig -o /boot/grub2/grub.cfg"
alias aptyup="apt-get -y update;apt-get -y upgrade;update-grub"
allias aptitudeyup="aptitude -y update;aptitude -y upgrade;update-grub"
alias apt-gety="apt-get -y "
alias aptitudey="aptitude -y "
# Set core pattern how I want it to be
alias fcorepattern='echo kernel.core_pattern = %e-%p-%h.core >> /etc/sysctl.conf;sysctl -f'
# Allow custom aliases to be put in .aliases or .bash_aliases .

5
zshrc
View File

@ -410,10 +410,15 @@ alias cwho="who -H -w -u"
# Upgrading Redhad/Debian
alias yumyup="yum -y check-update;yum -y update;grub2-mkconfig -o /boot/grub2/grub.cfg"
alias aptyup="apt-get -y update;apt-get -y upgrade;update-grub"
alias aptitudeyup="aptitude -y update;aptitude -y upgrade;update-grub"
alias apt-gety="apt-get -y "
alias aptitudey="aptitude -y "
# Set core pattern how I want it to be
alias fcorepattern='echo kernel.core_pattern = %e-%p-%h.core >> /etc/sysctl.conf;sysctl -f'
# .aliases
if [ -f ~/.aliases ]; then
source ~/.aliases