linux/windows转mac的习惯设置

Posted chenguang9239

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了linux/windows转mac的习惯设置相关的知识,希望对你有一定的参考价值。

外接键盘

常用快捷键设置

其他快捷键

  • 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=‘[33[01;32m][email protected]h[33[00m]:[33[01;36m]w[33[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=$(< "$dir/.git/HEAD")

if [[ $head = ref: refs/heads/* ]]; then

git_branch=" (${head#*/*/})"

elif [[ $head != ‘‘ ]]; then

git_branch=" → (detached)"

else

git_branch=" → (unknow)"

fi

return

fi

dir="../$dir"

done

git_branch=‘‘

}

PROMPT_COMMAND="find_git_branch; $PROMPT_COMMAND"

black=$‘[e[1;30m]‘

red=$‘[e[1;31m]‘

green=$‘[e[1;32m]‘

yellow=$‘[e[1;33m]‘

blue=$‘[e[1;34m]‘

magenta=$‘[e[1;35m]‘

cyan=$‘[e[1;36m]‘

white=$‘[e[1;37m]‘

normal=$‘[e[m]‘

PS1="[33[0;31m]u [33[00;36m]W$yellow$git_branch [33[0;33m]$[e[1;37m]"
  • 普通用户设置.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的习惯设置的主要内容,如果未能解决你的问题,请参考以下文章

设置java.library.path的值(Mac/Linux/Windows)

为啥使用了form表单之后页面会跳转,并且页面一片空白

006_mac osx 应用跨屏幕

Mac怎么修改系统时间和日期?苹果电脑对时间日期进行更改教程

jdk在mac系统环境变量设置(转)

如何在 C 预处理器中可靠地检测 Mac OS X、iOS、Linux、Windows? [复制]