parent
355b3f51d8
commit
f8f98f0194
12
Readme.md
12
Readme.md
|
@ -3,7 +3,17 @@
|
|||
# bash-ip
|
||||
> `bash-ip` 类似于linux下的简单版的ip命令工具. 目前只实现了几个用法, 后续会慢慢完善。
|
||||
|
||||
## versions
|
||||
|
||||
## 安装
|
||||
```bash
|
||||
npm i bash-ip -g
|
||||
```
|
||||
|
||||
|
||||
|
||||
## 版本更新信息
|
||||
- 0.0.2 (2018/05/15)
|
||||
* 删除多余的测试模块
|
||||
|
||||
- 0.0.1 (2018/05/15)
|
||||
* 发布0.0.1版
|
||||
|
|
1
index.js
1
index.js
|
@ -3,7 +3,6 @@
|
|||
require('es.shim')
|
||||
const os = require('os')
|
||||
const path = require('path')
|
||||
const pg = require('progress')
|
||||
const cp = require('child_process')
|
||||
const chalk = require('chalk')
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "bash-ip",
|
||||
"version": "0.0.1",
|
||||
"version": "0.0.2",
|
||||
"description": "类似于linux下的简单版的ip命令工具",
|
||||
"main": "index.js",
|
||||
"bin": {
|
||||
|
|
Loading…
Reference in New Issue