前端analysis | 知其所以然

《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

《Css3》- 如何成为一名前端开发者之Javascript高级

js html css3
Javascript介绍概要 js 使动态内容更新成为可能 web page js分: browser api, third api js 存在执行顺序 js 属于解释性语言,逐句解释逐句执行,得到返回结果,返回结果可能参与下句执行。 js 字符串文本执行,采用just-in-time 编 ...
Read more
上一页 下一页