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