You are currently viewing Command Line Tools

Command Line Tools

  • Post author:
  • Post category:General
  • Post comments:0 Comments
  • Post last modified:September 8, 2023
  • Reading time:3 mins read

Open files in programs from command line tool

Mac

				
					open -a 'google chrome' /yourPath   // open a file Google Chrome
code .                              // Open a folder in Visual Studio Code
atom .                              // Open a folder in Atom
open fileName                       // Open a file in the default app
				
			

Leave a Reply