Shell脚本学习
helloworld12#!/bin/bashecho "Hello World !"
运行chmod +x ./test.sh #使脚本具有执行权限 ./test.sh #执行脚本
使用string1234567#!/bin/bashstr='this is a string'echo ${str}echo ${#str} # 获取字符传长度echo `expr index ${str} io` # 查找字符 i 或 o 的位置(哪个字母先出现就计算哪个)
推荐给所有变量加上花括号,这是个好的编程习惯。推荐使用双引号 ,单引号则没有这些功能(#{})
双引号里可以有变量
双引号里可以出现转义字符
使用数组123456#!/bin/basharray_name=(a b c d)echo ${array_name[2]}echo ${array_name[@]} # 获取数组中的所有元素echo ${# ...
Windows常用操作命令
查询端口占用netstat -aon|findstr “8080”
强行杀死进程taskkill /pid 4136-t -f
查看所有端口netstat -ano
查看指定端口netstat -aon|findstr “7001”
删除端口taskkill /F /PID 3964
查看PID对应的进程tasklist|findstr 8908
结束进程2taskkill /f /t /im redis-server.exe
Hello World
Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.
Quick StartCreate a new post1$ hexo new "My New Post"
More info: Writing
Run server1$ hexo server
More info: Server
Generate static files1$ hexo generate
More info: Generating
Deploy to remote sites1$ hexo deploy
More info: Deployment