Moving Open under the Finder section.

This commit is contained in:
willywos 2015-10-16 07:47:07 -05:00
parent f160db7eff
commit 15704c5eb5

View File

@ -27,6 +27,7 @@ If you want to contribute, you are highly encouraged to do so. Please read the [
- [Finder](#finder) - [Finder](#finder)
- [Files and Folders](#files-and-folders) - [Files and Folders](#files-and-folders)
- [Icons](#icons) - [Icons](#icons)
- [Open](#open)
- [Fonts](#fonts) - [Fonts](#fonts)
- [Hardware](#hardware) - [Hardware](#hardware)
- [Hardware Information](#hardware-information) - [Hardware Information](#hardware-information)
@ -43,7 +44,6 @@ If you want to contribute, you are highly encouraged to do so. Please read the [
- [Networking Tools](#networking-tools) - [Networking Tools](#networking-tools)
- [TCP/IP](#tcpip) - [TCP/IP](#tcpip)
- [Wi-Fi](#wi-fi) - [Wi-Fi](#wi-fi)
- [Open](#open)
- [Package Managers](#package-managers) - [Package Managers](#package-managers)
- [Printing](#printing) - [Printing](#printing)
- [Security](#security) - [Security](#security)
@ -295,6 +295,34 @@ atsutil databases -removeUser && atsutil server -shutdown && atsutil server -pin
``` ```
## Open
#### Open a Url
```bash
open http://www.github.com
```
#### Open a file
```bash
open README.md
```
#### Open an application using -a
```bash
open -a "Google Chrome" http://www.github.com
```
#### Open a directory in Finder
```bash
open /path/to/directory
```
#### Open the current directory
```bash
open .
```
## Hardware ## Hardware
### Hardware Information ### Hardware Information
@ -483,33 +511,6 @@ defaults read /Library/Preferences/SystemConfiguration/com.apple.airport.prefere
security find-generic-password -ga "ROUTERNAME" | grep "password:" security find-generic-password -ga "ROUTERNAME" | grep "password:"
``` ```
## Open
#### Open a Url
```bash
open http://www.github.com
```
#### Open a file
```bash
open README.md
```
#### Open an application using -a
```bash
open -a "Google Chrome" http://www.github.com
```
#### Open a directory in Finder
```bash
open /path/to/directory
```
#### Open the current directory
```bash
open .
```
## Package Managers ## Package Managers
- [Fink](http://www.finkproject.org) - The full world of Unix Open Source software for Darwin. - [Fink](http://www.finkproject.org) - The full world of Unix Open Source software for Darwin.