open a folder in finder from terminal code example
Example 1: terminal how to find a directory
find . -type d | grep DIRNAME
Example 2: 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