一 mkdir 创建文件夹
mkdir myApp 在当前目录下创建myApp文件夹。
二 touch 创建文件
touch app.js 在当前目录下创建app.js文件
三 curl 发送网络请求
curl https://www.baidu.com 发送无参数的get请求
curl -d "" http://localhost:3000/users/list 发送无参数的post请求
原文:https://www.cnblogs.com/sea-breeze/p/10656478.html