update some cmds

This commit is contained in:
shzhxh 2019-10-23 21:16:45 +08:00
parent 4ed4d0b62d
commit f81831eb92
3 changed files with 57 additions and 0 deletions

13
Software/ftp.md Normal file
View File

@ -0,0 +1,13 @@
```
ftp [options] [host [port]]
pftp [options] [host [port]]
```
#### 选项
#### 命令
```
open <host> [port] # 连接到ftp服务器
```

View File

@ -1,3 +1,12 @@
#### tmux的原理
tmux使用c/s结构主要包括如下模块
- server输入tmux命令就开启了一个server
- session会话一个server可包含多个session
- window一个session可以包含多个window
- pane面板一个window可以包含多个pane
#### 激活控制台
```

35
Software/you-get.md Normal file
View File

@ -0,0 +1,35 @@
```
you-get [options] <urls>
```
#### 选项
##### 解析
```
-i # 打印解析信息
-u # 打印带有URLs的解析信息
--json # 以JSON格式打印解析的URLs
```
##### 下载
```
-O <FILE> # 输出到文件FILE
-o <DIR> # 输出到目录DIR
-a # 对同名文件自动重命名
```
##### 代理
```
-x
-y
--no-proxy
-s
```