MacOS: Difference between revisions

From 탱이의 잡동사니
Jump to navigation Jump to search
No edit summary
Line 25: Line 25:
* https://www.youtube.com/watch?v=NbB3Cm2ejkg
* https://www.youtube.com/watch?v=NbB3Cm2ejkg


== Other ==
=== Homebrew ===
Homebrew 는 맥에서 apt, yum, port 등 과 같은 기능을 하는 패키지 관리 툴이다.  간단히 brew 라고도 한다.
<pre>
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
</pre>
* https://brew.sh/


[[category:system]]
[[category:system]]

Revision as of 09:48, 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)"