답변:
플래그 와 함께 open 명령을 사용하여 -a
Chrome에서 파일 또는 위치를 열 수 있습니다 .
open -a "Google Chrome" index.html
이것은 또한 URL을 작동 즉 open -a "Google Chrome" http://www.apple.com
.
open -a "Google Chrome" *.html
열립니다. 예를 들어 일치하는 모든 html
파일을 현재 Chrome의 (활성?) 창에서 새 탭으로 엽니 다
스크립트 또는 일부 자동화 도구에서 이것을 사용할 때 완전한 바이너리에 별칭을 사용하여 모든 명령 행 옵션에 액세스 할 수 있습니다 (예 : --version
...)
alias chrome="/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"
chrome --version
chrome -open index.html
그런 다음이 별칭을 영구적으로 유지하려면 .bash_profile
수동으로 또는이 작은 스 니펫을 사용하여 별칭을 추가 할 수 있습니다 .
echo "alias chrome=\"/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome"\" >> ~/.bash_profile