Answers for "open directory in finder from terminal"

3

terminal how to find a directory

find . -type d | grep DIRNAME
Posted by: Guest on January-17-2020
4

open folder from terminal

Just use "open [path_to_dir]" in Unix or "start [path_to_dir]" in Windows as:
open .	#Open current directdory in Unix
start . #Open current directory in Windows
Posted by: Guest on October-25-2020

Code answers related to "open directory in finder from terminal"

Browse Popular Code Answers by Language