Shell script

Bash에서 크롬을 종료시키는 방법

검정비니 2022. 4. 7. 11:57
728x90
반응형

터미널에서 bash shell script를 사용해서 크롬 브라우저 탭을 종료시키는 방법을 소개하겠다.

 

pkill --oldest chrome

혹은

pkill --oldest --signal TERM -f chrome

 

둘 중 마음에 드는 것을 사용하면 된다.

 

위의 커멘드를 사용하면 그 다음 번에 크롬을 실행시킬 때 "Google Chrome didn't shut down correctly. To repoen .." 과 같은 에러 메세지를 받지 않게 만들어준다.

 

 

참고 링크:

https://unix.stackexchange.com/questions/34101/exit-google-chrome-from-terminal

 

Exit Google Chrome from terminal

Is there a way to cause google-chrome to quit, from the terminal, besides using killall google-chrome? I would like to be able to close it from a script without killing it.

unix.stackexchange.com

 

반응형