#!/bin/sh URL="https://gaiwan.co/wiki/$1" if command -v xdg-open >/dev/null then # Linux exec xdg-open "$URL" else # Mac exec open "$URL" fi