linux/windows转mac的习惯设置

2021-03-27 20:28

阅读:390

标签:输入   html   tps   until   环境变量配置   bbs   list   登录   需要   

外接键盘

常用快捷键设置

  • 中英文快捷键名都重新设置一遍
    • 使用ctrl替代command(对__内置__键盘操作)
    • https://jingyan.baidu.com/article/6f2f55a14652e0b5b93e6ca2.html
    Command-Z 撤消 
    Command-X 剪切  
    Command-C 拷贝(Copy)  
    Command-V 粘贴  
    Command-A 全选(All) 
    下两个待定?
    Command-S 保存(Save)  
    Command-F 查找(Find)
  • 外接键盘交换command与alt键(对__外接__键盘操作)
    • 系统会默认把外接键盘的win映射成command,需要把外接键盘的alt键与win键功能交换
    • 使用"修饰键"完成这个交换:https://bbs.feng.com/read-htm-tid-10959060.html
    • https://bbs.feng.com/read-htm-tid-8746599.html

其他快捷键

  • command+L 定位到地址栏
  • ctrl+Tab 切换到下一个标签
  • command+2 切换到第2个标签
  • command+左右 定位到行首与行尾
  • command+上下 定位到文件头与文件尾
  • option(映射到alt上,又交换到win上)+左右 定位到上一个与下一个单词末尾
  • 参考https://jingyan.baidu.com/article/08b6a591aac09614a909224f.html

安装软件

  • clion chrome
    • 安装完成把图标拖到文件夹上才OK
    • 如何查找软件安装路径:/Applications/CLion.app/Contents/bin/clion.vmoptions
    • 如何查找软件安装路径: 右键->选项->在访达中显示;右键程序图标->显示包内容
    • 破解软件: https://www.jianshu.com/p/f404994e2843
  • iterm2,用户环境变量配置如下:
~ $pwd
/var/root
~ $cat .bash_profile
#enables colorin the terminal bash shell export
export CLICOLOR=1

#setsup 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-256color

alias wk="cd /Users/admin/wangzhiyi"
alias ll="ls -lrta"

find_git_branch () {

local dir=. head

until [ "$dir" -ef / ]; do

if [ -f "$dir/.git/HEAD" ]; then

head=$(
  • 普通用户设置.bash_profile后,打开item2,其配置生效;但sudo su到root下,即使root用户目录下编写了.bash_profile,但却是不生效
    • sudo su 登录到root后会使用当前的环境
    • sudo su 登录到root后,passwd root重新设置密码给su - root登录使用
    • su - root并输入__新密码__后 会加载/etc/bashrc(把原.bash_profile内容追加在这个文件里)
    • 但sudo su的密码没有改变
  • sudo su 与 su - root 的区别?

linux/windows转mac的习惯设置

标签:输入   html   tps   until   环境变量配置   bbs   list   登录   需要   

原文地址:https://www.cnblogs.com/wangzhiyi/p/9344786.html


评论


亲,登录后才可以留言!