xdg-utils/htmlview.sh

9 lines
127 B
Bash
Raw Normal View History

#!/bin/sh
if [ $# -gt 0 ]; then
exec /usr/bin/xdg-open "$@"
else
exec /usr/bin/xdg-open http://start.fedoraproject.org/
fi