Apple Developer Documentation
资料检索:
- Command + Option + Esc 查看进程或关闭
- 深度开源为OPEN
- other
工具使用:
- Alfred
快捷键:option+space
应用卸载:使用 Alfred 搜索可以找到程序所安装的位置,可以顺利的删除卸载应用程序。- iTerm2
命令行工具- SSH Shell
SSH工具Mac 部分软件介绍
Mac 配置本地SSL
- other
基础常识:
- Mac开发者必备实用工具推荐
- MAC系统中各个文件夹详细介绍
- Mac 系统快捷键
- Mac终端命令大全介绍
- Linux之网络管理及相关命令
- Hosts 文件目录位置在 /etc/hosts
- VIM 光标移动常用命令
- other
other
- 配置环境变量:
linux:
系统级配置变量文件执行顺序:/etc/profile,/etc/bash.bashrc,/etc/environment
用户级配置变量文件:~/.profile,~/.bashrc,~/.bash_profile or ~./bash_login,~/.pam_environment
mac:
/etc/profile, /etc/paths, ~/.bash_profile, ~/.bash_login, ~/.profile, ~/.bashrc
sudo vi ~/.bash_profile
export PATH=$PATH:path1:path2source ~/.bashrc 更新修改配置
- 查看占用端口并杀死它
lsof -i tcp:3306 杀死对应进程(kill PID) kill 806 ;- SCP 上传本地文件到服务器
scp -P 7822 <this file path> <server username>@<ip>:<server/path/>-
软件工具搜索:
常用命令:
- brew : Mac 安装 /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
- brew cask install name :安装不上架app storm 的应用;
- brew install name
- brew create url 轻松创建你自己的 Homebrew 包。
- Zsh :
- ctrl-r 来搜索命令历史记录
- alias 可以查看所有的命令别名
- alias shortcut='this is the origin command' 定义别名命令
- 所有的压缩文件,都可以直接
x filename
- Alfred : brew cask install Alfred
- Open + 关键字 或者 Space(空格键) 来查询文件或者文件夹
- 输入 in aaa 查找文本文件内含有查询文字的文件
- 输入 tags 红色 查询含有查询 tags(标签) 的文件或者文件夹。
- → 为「显示动作面板」,Command + ↓为前往下一层文件夹,Command + ↑为前往上一层文件夹。
- 先前路径,在此可以设置热键(默认为
Option + Command + /
)或关键词,来快捷地访问最近一次在 Alfred 中使用文件导航访问的路径。- 用 snip 关键字 查询文本片段,查询到结果后直接回车便能将片段内容输入到当前激活的应用程序内。
- -
————————