Short cuts
Linux Ubuntu
1 | Ctrl + Alt + T: open the terminal |
MacOS
1 | screen shot: Shift + Command + 5 |
Command line
ref : https://www.linuxcool.com/
Config
Linux Ubuntu
系统设置
/etc 目录下 profile 、bash.bashrc 和用户目录下 .profile 、.bashrc 的区别?
/etc/profile 和 bash.bashrc 的文件是针对所用用户来说的,每个用户登录的时候都会执行。profile 只执行一次,bash.bashrc 在每次登录 Shell 的时候都会执行。bash.bashrc 包含在 profile 内。
~/.profile 和 ~/.bashrc 文件是针对单个用户的。
- ~./profile : Login Shell 登录时执行:其中包括执行 ~/.bashrc
- ~/.bashrc : Non-login Shell 登录时执行