Opens a file or URL In the default application.
(url)
| 103 | @cli.command() |
| 104 | @click.argument("url") |
| 105 | def open(url): |
| 106 | """Opens a file or URL In the default application.""" |
| 107 | click.launch(url) |
| 108 | |
| 109 | |
| 110 | @cli.command() |
no outgoing calls
searching dependent graphs…