Short cuts

Linux Ubuntu

1
2
3
Ctrl + Alt + T: open the terminal
Ctrl + Alt + C: copy
Ctrl + Alt + V: paste

MacOS

1
2
screen shot: Shift + Command + 5
switch full screen mode: Command + Control + F

Command line

ref : https://www.linuxcool.com/

Config

Linux Ubuntu

系统设置

  1. /etc 目录下 profile 、bash.bashrc 和用户目录下 .profile 、.bashrc 的区别?

    1. /etc/profile 和 bash.bashrc 的文件是针对所用用户来说的,每个用户登录的时候都会执行。profile 只执行一次,bash.bashrc 在每次登录 Shell 的时候都会执行。bash.bashrc 包含在 profile 内。

    2. ~/.profile 和 ~/.bashrc 文件是针对单个用户的。

      1. ~./profile : Login Shell 登录时执行:其中包括执行 ~/.bashrc
      2. ~/.bashrc : Non-login Shell 登录时执行