programing tip

쉘 스크립트에서 웹 브라우저를 실행하는 깨끗한 방법?

itbloger 2020. 9. 7. 07:53
반응형

쉘 스크립트에서 웹 브라우저를 실행하는 깨끗한 방법?


bash 스크립트에서 사용자 웹 브라우저를 시작해야합니다. 이를 수행하는 방법은 여러 가지가 있습니다.

  • $BROWSER
  • xdg-open
  • gnome-open 그놈에서
  • www-browser
  • x-www-browser
  • ...

대부분의 플랫폼에서 작동하는 다른 표준보다 더 표준적인 방법이 있습니까? 아니면 다음과 같이 가야합니까?

#/usr/bin/env bash

if [ -n $BROWSER ]; then
  $BROWSER 'http://wwww.google.com'
elif which xdg-open > /dev/null; then
  xdg-open 'http://wwww.google.com'
elif which gnome-open > /dev/null; then
  gnome-open 'http://wwww.google.com'
# elif bla bla bla...
else
  echo "Could not detect the web browser to use."
fi

xdg-open 표준화되어 있으며 대부분의 배포판에서 사용할 수 있습니다.

그렇지 않으면:

  1. eval 악, 사용하지 마십시오.
  2. 변수를 인용하십시오.
  3. 올바른 방법으로 올바른 테스트 연산자를 사용하십시오.

다음은 예입니다.

#!/bin/bash
if which xdg-open > /dev/null
then
  xdg-open URL
elif which gnome-open > /dev/null
then
  gnome-open URL
fi

이 버전이 약간 더 나을 수도 있습니다 (여전히 테스트되지 않음).

#!/bin/bash
URL=$1
[[ -x $BROWSER ]] && exec "$BROWSER" "$URL"
path=$(which xdg-open || which gnome-open) && exec "$path" "$URL"
echo "Can't find browser"

python -mwebbrowser http://example.com

많은 플랫폼에서 작동


OSX :

$ open -a /Applications/Safari.app http://www.google.com

또는

$ open -a /Applications/Firefox.app http://www.google.com

아니면 간단히 ...

$ open some_url

다음을 사용할 수 있습니다.

x-www-browser

사용자가 아닌 시스템의 기본 X 브라우저를 실행합니다.

참조 : 이 스레드.


Taking the other answers and making a version that works for all major OS's as well as checking to ensure that a URL is passed in as a run-time variable:

#!/bin/bash
if [ -z $1 ]; then
  echo "Must run command with the url you want to visit."
  exit 1
else
  URL=$1
fi
[[ -x $BROWSER ]] && exec "$BROWSER" "$URL"
path=$(which xdg-open || which gnome-open) && exec "$path" "$URL"
if open -Ra "safari" ; then
  echo "VERIFIED: 'Safari' is installed, opening browser..."
  open -a safari "$URL"
else
  echo "Can't find any browser"
fi

This may not apply exactly to what you want to do, but there is a really easy way to create and launch a server using the http-server npm package.

Once installed (just npm install http-server -g) you can put

http-server -o

in your bash script and it will launch a server from the current directory and open a browser to that page.

참고URL : https://stackoverflow.com/questions/3124556/clean-way-to-launch-the-web-browser-from-shell-script

반응형