nix/bin/x-open
2025-11-27 12:19:47 -06:00

9 lines
176 B
Bash
Executable file

#!/bin/sh
if [ "$(uname)" == "Darwin" ]; then
open $@
elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
xdg-open $@
else
echo "Platform Not supported"
fi