logo
Free, Micro AI Code Reviews That Run on Git Commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt git-lrc - Free, Micro AI Code Reviews That Run on Git Commit | Product Hunt

Open Files - Launch Applications | Online Free DevTools by Hexmos

Launch applications and files directly with Open command. Easily access directories and reveal files in Finder. Free online tool, no registration required.

open

Open files, directories and applications. More information: https://keith.github.io/xcode-man-pages/open.1.html.

  • Open a file with the associated application:

open {{file.ext}}

  • Run a graphical macOS [a]pplication:

open -a "{{Application}}"

  • Run a graphical macOS app based on the [b]undle identifier (refer to osascript for an easy way to get this):

open -b {{com.domain.application}}

  • Open the current directory in Finder:

open .

  • [R]eveal a file in Finder:

open -R {{path/to/file}}

  • Open all the files of a given extension in the current directory with the associated application:

open {{*.ext}}

  • Open a [n]ew instance of an application specified via [b]undle identifier:

open -n -b {{com.domain.application}}

See Also