Open Path in Separate Terminal Window on macOS
1 min readMar 14, 2019
Commands for the open separate terminal window for the path.
- Use
open
command:
open -a Terminal <PATH>
2. Use AppleScript:
osascript -e 'tell application "Terminal" to do script "cd <PATH>"'