-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.bashrc
58 lines (48 loc) · 1.22 KB
/
.bashrc
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#!/bin/bash
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
ulimit -c 0
umask 022
set history=200
set savehistory=200
set -o ignoreeof
unset autologout
export SHELL=/bin/bash
#export HOME=/home/sohda
export TMPDIR=/tmp
export TZ=JST-09
export MAKE_MODE=unix
PATH=/usr/local/sbin:/usr/sbin:/sbin:.:~/bin
PATH=/usr/local/bin:/usr/X11R6/bin:/usr/bin:/bin:$PATH
PAGER=less
JLESSCHARSET=japanese-sjis
export PATH PAGER JLESSCHARSET
export ANDROID_SDK_ROOT="/Applications/adt-bundle-mac/sdk"
export NDK_ROOT="/Applications/android-ndk"
PS1="$HOSTNAME:\w$ "
if [ -n ${DISPLAY} ]; then
export DISPLAY=localhost:0.0
fi
if [ ! -n "${TERM}" ]; then
TERM=cygwin
fi
alias ls="ls -F --color=auto --show-control-char"
alias la="ls -aF"
alias ll="ls -l"
alias j=jobs
alias vi=vim
alias more=less
#SYSTEM=`cygpath -u ${SYSTEMROOT}`/system32
#alias ping="$SYSTEM/ping.exe"
#alias arp="$SYSTEM/arp.exe"
#alias nslookup="$SYSTEM/nslookup.exe"
#alias traceroute="$SYSTEM/tracert.exe"
#alias route="$SYSTEM/route.exe"
#alias netstat="$SYSTEM/netstat.exe"
#alias ipconfig="$SYSTEM/ipconfig.exe"
#alias ifconfig=ipconfig
##alias start="$SYSTEM/CMD.exe /c start"
#alias start=cygstart
#unset SYSTEM