Skip to content

Commit f411b65

Browse files
committed
= improve Markdown docs
- fix typo - 即有 -> 既有 - 便捷的使用 -> 便捷地使用 - http -> https
1 parent c116327 commit f411b65

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
[![GitHub issues](https://img.shields.io/github/issues/oldratlee/useful-scripts)](https://github.com/oldratlee/useful-scripts/issues)
1313
[![GitHub Contributors](https://img.shields.io/github/contributors/oldratlee/useful-scripts)](https://github.com/oldratlee/useful-scripts/graphs/contributors)
1414

15-
👉 把平时有用的手动操作做成脚本,这样可以便捷的使用。 ✨
15+
👉 把平时有用的手动操作做成脚本,以便捷地使用。 ✨
1616

1717

1818
欢迎 👏💖

docs/shell.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -170,8 +170,8 @@ Examples:
170170
cat f - g Output f's contents, then standard input, then g's contents.
171171
cat Copy standard input to standard output.
172172

173-
GNU coreutils online help: <http://www.gnu.org/software/coreutils/>
174-
Full documentation at: <http://www.gnu.org/software/coreutils/cat>
173+
GNU coreutils online help: <https://www.gnu.org/software/coreutils/>
174+
Full documentation at: <https://www.gnu.org/software/coreutils/cat>
175175
or available locally via: info '(coreutils) cat invocation'
176176
```
177177
@@ -571,7 +571,7 @@ find file: bar.txt
571571
572572
选项说明最后可以有选项类型说明:
573573
574-
- `-`: 无参数的选项。即有选项则把值设置成`true`。这是 ***缺省*** 的类型。
574+
- `-`: 无参数的选项。既有选项则把值设置成`true`。这是 ***缺省*** 的类型。
575575
- `:`: 有参数的选项,值只有一个。
576576
- `+`: 有多个参数值的选项。值列表要以`;`表示结束。
577577
注意,`;``Bash`的元字符(用于一行中多个命令分隔),所以加上转义写成`\;`(当然也可以按你的喜好写成`";"``';'`)。

docs/vcs.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,17 +46,17 @@ swtrunk path/to/svn/work/directory1 /path/to/svn/work/directory2 # svn工作目
4646
```bash
4747
$ swtrunk
4848
# <svn sw output...>
49-
svn work dir . switch from http://www.foo.com/project1/branches/feature1 to http://www.foo.com/project1/trunk !
49+
svn work dir . switch from https://www.foo.com/project1/branches/feature1 to https://www.foo.com/project1/trunk !
5050

5151
$ swtrunk /path/to/svn/work/dir
5252
# <svn sw output...>
53-
svn work dir /path/to/svn/work/dir switch from http://www.foo.com/project1/branches/feature1 to http://www.foo.com/project1/trunk !
53+
svn work dir /path/to/svn/work/dir switch from https://www.foo.com/project1/branches/feature1 to https://www.foo.com/project1/trunk !
5454

5555
$ swtrunk /path/to/svn/work/dir1 /path/to/svn/work/dir2
5656
# <svn sw output...>
57-
svn work dir /path/to/svn/work/dir1 switch from http://www.foo.com/project1/branches/feature1 to http://www.foo.com/project1/trunk !
57+
svn work dir /path/to/svn/work/dir1 switch from https://www.foo.com/project1/branches/feature1 to https://www.foo.com/project1/trunk !
5858
# <svn sw output...>
59-
svn work dir /path/to/svn/work/dir2 switch from http://www.foo.com/project2/branches/feature1 to http://www.foo.com/project2/trunk !
59+
svn work dir /path/to/svn/work/dir2 switch from https://www.foo.com/project2/branches/feature1 to https://www.foo.com/project2/trunk !
6060
```
6161

6262
🍺 [svn-merge-stop-on-copy](../legacy-bin/svn-merge-stop-on-copy)
@@ -76,9 +76,9 @@ svn-merge-stop-on-copy <来源的远程分支> <目标远程分支>
7676
### 示例
7777

7878
```bash
79-
svn-merge-stop-on-copy http://www.foo.com/project1/branches/feature1 # 缺省使用当前目录作为svn工作目录
80-
svn-merge-stop-on-copy http://www.foo.com/project1/branches/feature1 /path/to/svn/work/directory
81-
svn-merge-stop-on-copy http://www.foo.com/project1/branches/feature1 http://www.foo.com/project1/branches/feature2
79+
svn-merge-stop-on-copy https://www.foo.com/project1/branches/feature1 # 缺省使用当前目录作为svn工作目录
80+
svn-merge-stop-on-copy https://www.foo.com/project1/branches/feature1 /path/to/svn/work/directory
81+
svn-merge-stop-on-copy https://www.foo.com/project1/branches/feature1 https://www.foo.com/project1/branches/feature2
8282
```
8383

8484
### 贡献者
@@ -102,7 +102,7 @@ cp-svn-url /path/to/svn/work/directory
102102

103103
```bash
104104
$ cp-svn-url
105-
http://www.foo.com/project1/branches/feature1 copied!
105+
https://www.foo.com/project1/branches/feature1 copied!
106106
```
107107

108108
### 贡献者

0 commit comments

Comments
 (0)