6 lines
76 B
Bash
6 lines
76 B
Bash
# Open file/dir in GUI.
|
|
# Usage: o <FILE>
|
|
function o() {
|
|
xdg-open "${@}"
|
|
}
|