Created
April 26, 2017 16:20
-
Star
(113)
You must be signed in to star a gist -
Fork
(12)
You must be signed in to fork a gist
-
-
Save redism/43bc51cab62269fa97a220a7bb5e1103 to your computer and use it in GitHub Desktop.
macOS Sierra에서 원화(₩) 대신 백 쿼트(`) 입력하기
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
if [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ]; then | |
echo "~/Library/KeyBindings/DefaultkeyBinding.dict already exists" | |
exit -1 | |
fi | |
mkdir -p ~/Library/KeyBindings | |
cat << EOF > ~/Library/KeyBindings/DefaultkeyBinding.dict | |
{ | |
"₩" = ("insertText:", "\`"); | |
} | |
EOF | |
echo "Done." |
@hyeontack5 코드에 파일이 존재하는지 확인하는 부분이 있네요.
if ! [ -f ~/Library/KeyBindings/DefaultkeyBinding.dict ];파일 삭제하고 한번 시도해보세요
@mingkyme 파일 삭제하고 저 코드로 한번 더 실행해볼까요? 파일이 있는지 체크하고 없을 때 새로 생성하는거 같은데 한번 해보겠습니다!
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@hyeontack5 코드에 파일이 존재하는지 확인하는 부분이 있네요.
파일 삭제하고 한번 시도해보세요