ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/wangdy/sys/bashrc
Revision: 1.2
Committed: Fri Dec 7 17:23:26 2007 UTC (17 years, 4 months ago) by wangdy
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +6 -3 lines
Error occurred while calculating annotation data.
Log Message:
correct an alias

File Contents

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