Mac自带终端工具Terminal(终端),虽然性能有所增强,但是iterm2更好用一些。
快捷键:
新建标签:command + t
关闭标签:command + w
查找:command + f (备注 :加上tab,就会自动补齐后面的,shift + tab 会自动补齐前面)
切换全屏:command + enter
分屏 : command + d
水平分屏 : command + shift + d
切换标签:command + 数字 command + 左右方向键
清除屏幕 : command + r || control + l
查看剪贴板历史:command + shift + h(如果需要将剪切板的历史记录保存到磁盘,在Preferences > General > Save copy/paste history to disk.中设置。)
删除(清除)一行 : control +u
删除当前的字符 : control + d
删除之前的字符 : control + h
删除之前的单词 : control + w
删除之后的文本 : control + k
将光标移到行尾 : control + e
将光标移到行首 : control +a
交换光标处文本 : control + t
清除屏幕 : command + r || control + l
搜索历史命令 : control + r
备注 :粘贴--直接选中就可以,上一条命令--键盘的向上方向键
配色的相关设置 :
1,vim或者open -e 打开~/.bash_profile
2,把下面一段话贴进去
#enables colorin the terminal bash shell export
export CLICOLOR=1
#sets up thecolor scheme for list export
export LSCOLORS=gxfxcxdxbxegedabagacad
#sets up theprompt color (currently a green similar to linux terminal)
export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;36m\]\w\[\033[00m\]\$ '
#enables colorfor iTerm
export TERM=xterm-color
3 mac 注销
4 重新打开iterm
5 preference->profiles->Terminal->xterm-new
5.1 Colors菜单,选择LoadPresents,import就可以选择下载好的配色方案了
1.在perference(偏爱)中 2.在perference(偏爱)中找到colors和terminal(终端)备注 : 可以在gitlab上进行下载配色(个人觉得没有必要)
半透明 设置:
原文章参考 :http://www.cr173.com/html/48065_1.html
其他(git 中用到的终端命令):
1.创建文件 :touch a.html
2.创建并编辑文件 : vim a.html
3.创建并添加内容 : echo nihao >>a.html
4.查看文件内容 : cat a.html
5.查看隐藏文件 : ls-ah
网友评论