mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2026-04-24 04:29:25 +02:00
5 lines
145 B
Bash
5 lines
145 B
Bash
# Send everything on the command line to Dash, without having to
|
|
# type the whole 'open "dash://" business
|
|
function dash() {
|
|
open "dash://$1"
|
|
}
|