nix/home/shell/bin/x-open
2025-06-16 13:27:32 -07: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