Files
fl_chart/scripts/makefile_scripts.sh
zypherift c7e3f36b06
Some checks failed
Code Coverage / upload (push) Has been cancelled
Gh-Pages / build (push) Has been cancelled
Code Verification / verify (push) Has been cancelled
1.0.0
2025-08-09 18:17:34 +02:00

28 lines
461 B
Bash

#!/bin/bash
# Opens a link with the default browser of OS (It works cross-platform)
#
## You can call it like `open_link balad.ir` to open balad website on your default browser
open_link () {
case "$(uname -s)" in
Darwin)
# macOS
open "$1"
;;
Linux)
# Linux:
xdg-open "$1"
;;
CYGWIN*|MINGW32*|MSYS*|MINGW*)
# Windows
start "$1"
;;
*)
echo 'Not supported OS'
;;
esac
}