Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- apache
- .bash_profile
- OS X
- お名前.com
- eclipse ide
- 컴퓨터내 파일 검색
- MySQL Query
- eclipse plugin
- CentOS4
- Parallels
- Remote Desktop
- java
- CentOS5
- iPhone
- VPS
- RPM
- yum
- mac
- 식별자
- server & linux
- IDE
- 기도문 (prayers)
- Eclipse
- aptana studio
- linux
- Virtuozzo
- Windows XP
- Plesk
- php
- 맥
Archives
- Today
- Total
n-n
Mac : 터미널 프롬프트 (terminal prompt) 변경 본문
리눅스의 프롬프트 변경과 거의 동일
기본으로 .bash_profile 파일이 없으므로
/private/etc/bashrc
파일을 참고
(보통의 리눅스에서는 /etc/bashrc)
My-Mac:~ test$ cd ~
My-Mac:~ test$ vi .bash_profile
나의 예제
# System-wide .bashrc file for interactive bash(1) shells. if [ -z "$PS1" ]; then return fi PS1='My-Mac:\W test\$ ' shopt -s checkwinsize if [ "$TERM_PROGRAM" == "Apple_Terminal" ] && [ -z "$INSIDE_EMACS" ]; then update_terminal_cwd() { local SEARCH=' ' local REPLACE='%20' local PWD_URL="file://$HOSTNAME${PWD//$SEARCH/$REPLACE}" printf '\e]7;%s\a' "$PWD_URL" } PROMPT_COMMAND="update_terminal_cwd; $PROMPT_COMMAND" fi
'MAC' 카테고리의 다른 글
Mac : alias 설정 변경 .profile (0) | 2014.03.02 |
---|
Comments