6 lines
192 B
Plaintext
Raw Permalink Normal View History

2024-10-29 18:12:34 -05:00
f() { # DESC: Opens the Finder to specified directory. (Default is current oath) # ARGS: $1 (optional): Path to open in finder
# REQS: MacOS
# USAGE: f [path]
open -a "Finder" "${1:-.}"
}