Command(5)
-
[Command] 설치 되어있는 모든 JDK를 확인할 수 있는 명령어
/usr/libexec/java_home -V Matching Java Virtual Machines (2): 14.0.1 (x86_64) "Oracle Corporation" - "Java SE 14.0.1" /Library/Java/JavaVirtualMachines/jdk-14.0.1.jdk/Contents/Home 1.8.0_362 (x86_64) "Amazon" - "Amazon Corretto 8" /Users/OOO/Library/Java/JavaVirtualMachines/corretto-1.8.0_362/Contents/Home /Library/Java/JavaVirtualMachines/jdk-14.0.1.jdk/Contents/Home
2023.07.19 -
[Command] 형상관리(svn, git) 파일 정리
# git 관련 파일 정리 > find . -type d -name .git -depth -exec rm -rf {} \; -print # svn 관련 파일 정리 > find . -type d -name .svn -depth -exec rm -rf {} \; -print ## OSX 관련 파일 정리 > find . -type f -name .DS_Store -depth -exec rm -rf {} \; -print
2022.01.21 -
[OSX-Command] xcode-select
개발자도구(Xcode) 디렉토리의 경로를 출력하거나 변경 # -p --print-path : 활성화된 개발자도구의 경로를 출력 > xcode-select -p /Applications/Xcode.app/Contents/Developer # -s --switch : 활성화시킬 개발자도구의 경로 설정 > xcode-select --switch /Applications/Xcode.app/Contents/Developer xcode-select: error: --switch must be run as root (e.g. `sudo xcode-select --switch `). > sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer Pass..
2022.01.19 -
[Command-OSX] SSL 정보 확인(openssl, curl)
# OpenSSL 이용 echo | openssl s_client -showcerts -connect {domain:port} echo | openssl s_client -showcerts -connect google.com:443 CONNECTED(00000005) depth=1 C = US, O = Google Trust Services LLC, CN = GTS CA 1C3 verify return:1 depth=0 CN = *.google.com verify return:1 --- Certificate chain 0 s:CN = *.google.com i:C = US, O = Google Trust Services LLC, CN = GTS CA 1C3 -----BEGIN CERTIFICATE----..
2022.01.07 -
Provision 확인 명령
# Provision 확인 명령 > security cms -D -i # APNS 정보 등록 여부 확인 aps-environment 값이 존재하면 정상 aps-environment production
2020.12.02