前端analysis | 知其所以然

《python》- python入门概念总结

python
python 介绍 2.x 与 3.x 版本不兼容, 存在以下主要不同,本问介绍基于Mac下Python3.x版本: 1. 使用__future__模块2. print函数3. 整数除法4. Unicode5. xrange6. 触发异常7. 处理异常8. next()函数和.next() ...
Read more

《Linux》- shell 搜索命令

shell 脚本
linux 命令查看命令帮助 help info man or –help ,功能强度排序: help(只能内置命令) < man < info 内置命令 man help 查看内置命令列表 123456bash, :, ., [, alias, bg, b ...
Read more

《Linux》- 别名管理

shell 脚本
别名管理 别名使用,加快输入,不同命令解析,对应不同配置 Bash – ~/.bashrc ZSH – ~/.zshrc Fish – ~/.config/fish/config.fish 查看别名1alias 临时别名 12345 ...
Read more

《serverless》- serverless能做什么?

serverless
serverless安装Mac|Linux1curl -o- -L https://slss.io/install | bash Windows12choco install serverlesschoco upgrade serverless Npm方法12345# 安装 serverle ...
Read more

《Linux》- shell for循环

shell 脚本
for 循环结构1234for i [in { }] # 范围do 循环执行logicdone 循环输出用户输入12345678# 默认去 $@,取所有位置变量值for i do echo $idone$ ./for_test.sh 1,2,3,3,000,2331,2 ...
Read more

《Linux》- windows安装虚拟机并配置ssh

shell 脚本
虚拟机介绍VMware workstation Pro 场景: 让Windows用户使用Linux系统 支持度 大多数64位Linux发行版 Win7+ (64bit) Windows Server2008 R2+ 优缺点 优点 缺点 不错的网络性能、可后台运行 ...
Read more
上一页 下一页