일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- netsh
- GIT
- vscode
- context
- plugin
- import
- ssh
- Mac
- resource
- JavaScript
- profile
- IntelliJ
- Windows
- xargs
- bash
- find
- VirtualBox
- Quartz
- 줄바꿈 문자
- Source
- Eclipse
- maVen
- 네트워크
- port
- lsof
- tomcat
- grep
- web.xml
- Windows 10
- 단축키
- Today
- Total
목록OS & Shell/Linux (83)
develog
.bashrc 는 다음에 주로 사용됨 - set aliases - define functions - customize prompt .bash_profile 는 다음에 주로 사용됨 - set PATH variable - run commands that are needed only once at start of your session. https://www.tutorialspoint.com/bashrc-vs-bash-profile-what-is-difference http://www.joshstaiger.org/archives/2005/07/bash_profile_vs.html http://uroa.tistory.com/m/114
alias ll="ls -alFh --time-style=long-iso --group-directories-first"
아래 코드를 bash 에서 실행 echo && echo -e "\e[39m39 Foreground Default foreground color\e[0m" && echo -e "\e[30m30 Foreground Black\e[0m" && echo -e "\e[31m31 Foreground Red\e[0m" && echo -e "\e[32m32 Foreground Green\e[0m" && echo -e "\e[33m33 Foreground Yellow\e[0m" && echo -e "\e[34m34 Foreground Blue\e[0m" && echo -e "\e[35m35 Foreground Magenta\e[0m" && echo -e "\e[36m36 Foreground Cyan\e[0m" && ec..
https://medium.com/sunhyoups-story/vim-%EC%97%90%EB%94%94%ED%84%B0-%EC%9D%B4%EC%81%98%EA%B2%8C-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0-5b6b8d546017
prompt 변경 ( PS1 ) ## 현재 설정 확인 $ echo $PS1 ## .bashrc 에 내용 추가 $ vi ~/.bashrc PS1="[\e[38;5;36m\u\e[38;5;250m@\e[38;5;97m\h \e[38;5;202m\W\e[38;5;250m]$ " ## 변경한 내용 적용 $ source ~/.bashrc ls 컬러 변경 ( LS_COLORS ) ## 현재 설정 확인 $ echo $LS_COLORS ## .bashrc 에 변경할 내용 추가 $ vi ~/.bashrc LS_COLORS="di=38;5;33:ex=38;5;49:ln=38;5;35:so=0:pi=0:bd=0:cd=0:su=0:sg=0:tw=0:ow=0" ## 변경한 내용 적용 $ source ~/.bashrc alias..