6 lines
88 B
Bash
6 lines
88 B
Bash
if ! command -v open >/dev/null 2>&1
|
|
then
|
|
function open {
|
|
gio open ${@:-.}
|
|
}
|
|
fi
|