We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4a8c50 commit ab1c011Copy full SHA for ab1c011
docs/shell.md
@@ -51,19 +51,26 @@
51
52
### 示例
53
54
+有3种使用风格,根据需要或是你的偏好选取。
55
+
56
```bash
-# 前缀方式,后面跟上要运行的命令
57
+# 1. 前缀方式,后面跟上要运行的命令
58
$ c pwd
59
/Users/jerry
60
$ c echo -e 'a\nb'
61
a
62
b
-# 从标准输入读取内容
-$ c < id_rsa.pub
63
-ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAz+ETZEgoLeIiC0rjWewdDs0sbo8c...== [email protected]
64
-# 后缀方式,管道
+# 这种使用方式,后面跟的命令不能是别名(alias),对于别名可以用下面的使用方式。
65
+# 2. 后缀方式,管道
66
$ echo -e 'a\nb' | nl | c
67
1 a
68
+# gb是oh-my-zsh的别名,列出git的分支,需要后缀的方式的使用。
69
+$ gb | c
70
71
+# 3. 从标准输入读取内容。拷贝文件内容时这种方式最直接。
72
+$ c < id_rsa.pub
73
+ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAz+ETZEgoLeIiC0rjWewdDs0sbo8c...== [email protected]
74
2 b
75
```
76
0 commit comments