mac相关快捷键
#mac
shift command 4 截图
command f3 回到桌面
control + 左右键 等同于三指滑动
command + w 关闭窗口
command-H 隐藏
finder 打开路径搜索 Command+shift+G
#vim
w:光标以单词向前移动 nw:光标向前移动n个单词
^ 光标到单词的第一个字母上
Visual Block ctrl + v
#vscode
command+j 打开命令行
按住command + 点击 跳转到函数 control + - 退回
vscode批量替换快捷键 command+F2
选中多行 shift + option + 鼠标选择
#google
mac chrome 开发者工具 option + command + I
#Iterm2
垂直分屏:command + d
水平分屏:command + shift + d
#sublime Text
选中多列:option + 单击选中 或者 Ctrl + Shift + Up
iTerm2 Home/End 快捷键
进入Preferences,Keys,left option改为+Esc
修改option+left:action改为Send Escape Sequence,Esc+为B 修改opton+right:action改为Send Escape Sequence,Esc+为F 增加cmd+left:action改为Send Escape Sequence,Esc+为[H 增加cmd+right:action改为Send Escape Sequence,Esc+为[F
这样option+left、right就是左右移动单词,cmd+left、right就是移动到行首行尾
Mac 查看端口占用
sudo lsof -n -P| grep :8000
判断端口连通情况 telnet响应的特别慢,不知道为什么,推荐使用nc
nc -z 10.21.8.20 80
Connection to 10.21.8.20 port 80 [tcp/http] succeeded!
➜ ~ nc -zv 10.21.8.20 80
found 0 associations
found 1 connections:
1: flags=82<CONNECTED,PREFERRED>
outif en0
src 172.30.50.12 port 63910
dst 10.21.8.20 port 80
rank info not available
TCP aux info available
Connection to 10.21.8.20 port 80 [tcp/http] succeeded!