MacOS: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
(→Other) |
||
Line 33: | Line 33: | ||
</pre> | </pre> | ||
* https://brew.sh/ | * https://brew.sh/ | ||
=== Bash-completion === | |||
Bash 의 Auto completion 패키지다. | |||
<pre> | |||
$ brew install bash-completion | |||
</pre> | |||
처음 설치 후, Completion 이 굉장히 느리게 작동하는 문제가 있었다. 다른 사람들도 같은 문제를 겪는 모양이다. | |||
* http://darylwiest.blogspot.com/2015/10/why-is-bash-complete-so-slow.html | |||
[[category:system]] | [[category:system]] |
Revision as of 09:51, 4 October 2018
Overview
맥북 관련 내용 정리
Basic shortcut
맥북에서 모든 것은 command key 로 통한다. 명령 단축키를 사용하고자 한다면, 항상 command key 를 누르는 것을 생활화 하자.
Copy, Cut, Paste
File copy, cut, paste
- ⌘ + C : Copy the file into the clip.
- ⌘ + V : Copy and paste.
- ⌘ + Option + V : Cut and paste.
Text copy, cut, paste
- ⌘ + C : Copy the text into the clip.
- ⌘ + X : Cut the text.
- ⌘ + V : Paste the text.
Screen shot
기본적으로 생성된 스크린샷은 Desktop 디렉토리에 저장된다.
- ⌘ + Shift + 3 : 전체 범위 스크린 샷
- ⌘ + Shift + 4 : 범위 지정 스크린 샷
- ⌘ + Shift + 4 + Space bar : 지정한 윈도우 스크린 샷
Other
Homebrew
Homebrew 는 맥에서 apt, yum, port 등 과 같은 기능을 하는 패키지 관리 툴이다. 간단히 brew 라고도 한다.
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
Bash-completion
Bash 의 Auto completion 패키지다.
$ brew install bash-completion
처음 설치 후, Completion 이 굉장히 느리게 작동하는 문제가 있었다. 다른 사람들도 같은 문제를 겪는 모양이다.