-
Notifications
You must be signed in to change notification settings - Fork 0
/
mybashrc
41 lines (35 loc) · 1.62 KB
/
mybashrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# Sample .bashrc for SuSE Linux
# Copyright (c) SuSE GmbH Nuernberg
# There are 3 different types of shells in bash: the login shell, normal shell
# and interactive shell. Login shells read ~/.profile and interactive shells
# read ~/.bashrc; in our setup, /etc/profile sources ~/.bashrc - thus all
# settings made here will also take effect in a login shell.
#
# NOTE: It is recommended to make language settings in ~/.profile rather than
# here, since multilingual X sessions would not work properly if LANG is over-
# ridden in every subshell.
# Some applications read the EDITOR variable to determine your favourite text
# editor. So uncomment the line below and enter the editor of your choice :-)
#export EDITOR=/usr/bin/vim
#export EDITOR=/usr/bin/mcedit
# For some news readers it makes sense to specify the NEWSSERVER variable here
#export NEWSSERVER=your.news.server
# If you want to use a Palm device with Linux, uncomment the two lines below.
# For some (older) Palm Pilots, you might need to set a lower baud rate
# e.g. 57600 or 38400; lowest is 9600 (very slow!)
#
#export PILOTPORT=/dev/pilot
#export PILOTRATE=115200
test -s ~/.alias && . ~/.alias || true
#alias svn='/usr/local/svn-64/bin/svn'
#alias svnadmin='/usr/local/svn-64/bin/svnadmin'
#alias svndumpfilter='/usr/local/svn-64/bin/svndumpfilter'
#alias svnlook='/usr/local/svn-64/bin/svnlook'
#alias svnrdump='/usr/local/svn-64/bin/svnrdump'
#alias svnserve='/usr/local/svn-64/bin/svnserve'
#alias svnsync='/usr/local/svn-64/bin/svnsync'
#alias svnversion='/usr/local/svn-64/bin/svnversion'
export LANG=en_US
ulimit -c 200000
set -o vi
alias astyle='/usr/local/astyle/bin/astyle'