mirror of https://github.com/fspc/gbootroot.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
538 B
23 lines
538 B
# ~/.bashrc: executed by bash(1) for non-login shells.
|
|
# see /usr/share/doc/bash/examples/startup-files for examples
|
|
#
|
|
# $Id$
|
|
# make_debian replacement
|
|
|
|
# If running interactively, then:
|
|
if [ "$PS1" ]; then
|
|
|
|
# enable color support of ls and also add handy aliases
|
|
|
|
eval `dircolors`
|
|
alias ls='ls --color=auto'
|
|
#alias ll='ls -l'
|
|
#alias la='ls -A'
|
|
#alias l='ls -CF'
|
|
#alias dir='ls --color=auto --format=vertical'
|
|
#alias vdir='ls --color=auto --format=long'
|
|
|
|
# set a fancy prompt
|
|
|
|
PS1='\u@\h:\w\$ '
|
|
fi
|
|
|