diff options
author | piernov <piernov@piernov.org> | 2012-01-22 11:53:58 +0100 |
---|---|---|
committer | piernov <piernov@piernov.org> | 2012-01-22 11:53:58 +0100 |
commit | 656378eb13dd8c1af44a368e7dfee3333eb055a2 (patch) | |
tree | 9707d7a6d1af19d5c1d8431821232ae81ce42d85 /aaabasicfs/bashrc | |
parent | 9626427c1a1d9c292fc519810c13b9a8073e777f (diff) | |
parent | 8d576551b5c270c65fe06443b7295d73cc662064 (diff) | |
download | nutyx-pakxe-656378eb13dd8c1af44a368e7dfee3333eb055a2.tar.gz nutyx-pakxe-656378eb13dd8c1af44a368e7dfee3333eb055a2.tar.bz2 nutyx-pakxe-656378eb13dd8c1af44a368e7dfee3333eb055a2.tar.xz nutyx-pakxe-656378eb13dd8c1af44a368e7dfee3333eb055a2.zip |
Merged with http://kiao.no-ip.info/NuTyX/git/nutyx-pakxe → Repository splitted → nutyx-pakxe
Diffstat (limited to 'aaabasicfs/bashrc')
-rw-r--r-- | aaabasicfs/bashrc | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/aaabasicfs/bashrc b/aaabasicfs/bashrc new file mode 100644 index 000000000..316652ac8 --- /dev/null +++ b/aaabasicfs/bashrc @@ -0,0 +1,28 @@ +# $Id: bashrc,v 1.9 2008/08/02 06:06:56 install Exp install $ +# Begin ~/.bashrc +# Written for Beyond Linux From Scratch +# by James Robertson <jameswrobertson@earthlink.net> + +# Personal aliases and functions. + +# Personal environment variables and startup programs should go in +# ~/.bash_profile. System wide environment variables and startup +# programs are in /etc/profile. System wide aliases and functions are +# in /etc/bashrc. + +if [ -f "/etc/bashrc" ] ; then + source /etc/bashrc +fi +alias ll='ls -l' +alias l='ls -alh' +alias duh='du -h --max-depth=1' +alias dfh='df -h' +alias get='syn;pkg-get depinst' +alias build='pkgmk -d -i' +alias check='syn;pkg-get diff' +alias del='pkgrm' +alias up='pkg-get update' +alias sysup='pkg-get sysup' +alias pkgfind='pkginfo -i | grep -i' + +# End ~/.bashrc |