10/12/2004, 03:01
|
| | Fecha de Ingreso: diciembre-2001 Ubicación: minime$
Mensajes: 1.673
Antigüedad: 22 años, 11 meses Puntos: 1 | |
Te dejo mi .bashrc, como ejemplo:
-----------------
@platas /home/herje $ cat .bashrc
# .bashrc
# User specific aliases and functions
PS1="\[\033[01;32m\]\u@\h \[\033[01;34m\]\w $ \[\033[00m\]"
alias ll='ls -l -color=auto'
alias la='ls -la --color=auto'
alias l='ls -CF --color=auto'
alias xx="exit"
alias ls="ls -la --color=auto"
alias edit="nano -w"
alias rmrf="rm -Rf"
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# enable programmable completion features
if [ -f /etc/bash_completion ]; then
. /etc/bash_completion
fi
@platas /home/herje $
--------------------- |