ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/wangdy/sys/bashrc
Revision: 1.1
Committed: Fri Dec 7 16:26:02 2007 UTC (17 years, 4 months ago) by wangdy
Branch: MAIN
Log Message:
first import

File Contents

# User Rev Content
1 wangdy 1.1 #! /usr/local/bin/bash
2     #
3     # $Log$
4     #
5     # Source global definitions
6     if [ -f /etc/bashrc ]; then
7     . /etc/bashrc
8     fi
9    
10     # enable programmable completion features
11     if [ -f /etc/bash_completion ]; then
12     . /etc/bash_completion
13     fi
14    
15    
16     # aliases for interactive shells
17     #source $HOME/.bash.alias
18    
19     ## Standard aliases - security
20     # "-i" asks for confirmation when deleting. This is good.
21     # In the "dangerous" section there are aliases for non-confirmation.
22     alias rm='rm -i'
23     alias cp='cp -i'
24     alias mv='mv -i'
25     alias ll='ll -t'
26    
27     # These are the most common typos made by users, even experienced ones.
28     alias maek='make'
29     alias alais='alias'
30     alias sl='ls --color=tty'
31    
32     # Dayong's aliases
33     alias dyterm='xterm -ls -bg "#E1E1AA" -fn 10x20 -sb -sl 1000&'
34     alias xterm1='xterm -ls -fn 10x20 -sb -sl 1000&'
35     alias xterm2='xterm -sl 10000 -aw -rw -tn vt100 -fn 10x20 -bg Seagreen -fg white &'
36