summaryrefslogtreecommitdiffstats
path: root/aaabasicfs/bashrc
diff options
context:
space:
mode:
authortnut <tnut at nutyx dot com>2012-01-08 12:12:28 +0100
committertnut <tnut at nutyx dot com>2012-01-08 12:12:28 +0100
commit9291e062cb24bac5d7c7059d4dc64669c1917b33 (patch)
treeae6f7e4fb2769d6c53b214c5e0b4d862f1df98dc /aaabasicfs/bashrc
parentc9972ec7f32bf9d37388e853fe9bf633e242d05a (diff)
downloadnutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.gz
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.bz2
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.tar.xz
nutyx-pakxe-9291e062cb24bac5d7c7059d4dc64669c1917b33.zip
aaabasicfs 2011-3 et split des dépot base et extra en 2 git séparé
Diffstat (limited to 'aaabasicfs/bashrc')
-rw-r--r--aaabasicfs/bashrc28
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