Skip to content

Commit 7df977b

Browse files
committedJul 21, 2018
remove references to -D option for install
1 parent dc4a5f2 commit 7df977b

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed
 

‎README.md

+3-6
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,10 @@ Use a package manager? [Check here](https://github.com/ryanmjacobs/c#packages).
5454
For the entire system:
5555
```bash
5656
$ wget https://raw.githubusercontent.com/ryanmjacobs/c/master/c
57-
$ sudo install -Dm 755 c /usr/bin/c
57+
$ sudo install -m 755 c /usr/bin/c
5858

59-
# Or... for systems that prefer /usr/local/bin (e.g. MacOS)
60-
$ sudo install -Dm 755 c /usr/local/bin/c
61-
62-
# Alternatively, if "-Dm" is not supported by your version of install:
63-
$ sudo install -m 755 c /path/to/install
59+
# Or... for systems that prefer /usr/local/bin (e.g. macOS)
60+
$ sudo install -m 755 c /usr/local/bin/c
6461
```
6562

6663
For your local user only:

0 commit comments

Comments
 (0)
Failed to load comments.