1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
open - open file in its default application
===========================================
Synopsis
--------
.. synopsis::
open FILES ...
Description
-----------
``open`` opens a file in its default application, using the appropriate tool for the operating system. On GNU/Linux, this requires the common but optional ``xdg-open`` utility, from the ``xdg-utils`` package.
Note that this function will not be used if a command by this name exists (which is the case on macOS or Haiku).
Example
-------
``open *.txt`` opens all the text files in the current directory using your system's default text editor.
|