zoukankan      html  css  js  c++  java
  • Linux-命令-su

    1. 首先用help理解su, sudo su, sudo

    2. 其次理解"login shell" and "interactive shell". 

    "When Bash starts executes the commands in a variety of different scripts. 
    (1) When started as an interactive login shell: Bash reads and executes the /etc/profile (if it exists). After reading that file, it looks for ~/.bash_profile, ~/.bash_login, and ~/.profile in that order, and reads and executes the first one (that exists and is readable).  When a login shell exits: Bash reads and executes ~/.bash_logout (if it exists).
    (2) When started as an interactive shell (but not a login shell): Bash reads and executes ~/.bashrc (if it exists)."
    显然login shell和interactive shell在环境的设置上是存在差别的,详细可以参考: http://groups.google.com/group/Linux.debian.user/browse_thread/thread/2b71ecfc45789958/7bff24e3bae74b36?lnk=raot

    3.  然后su命令的横杠就非常容易理解了,参数横杠-, 是为了让切换获取的shell是一个login shell

     -, -l, --login               make the shell a login shell

    -------------------- 阑心而慧智,心静而致远. --------------------
  • 相关阅读:
    BNU Online Judge-29140
    HDU-1022-Train Problem I
    HDU-1312-Red and Black
    BNU Online Judge-34978-汉诺塔
    BNU Online Judge-34976-数细菌
    BNU Online Judge-34973-Liserious战队
    HDU-1010-Tempter of the Bone
    HDU-1518-Square
    thinkphp笔记
    1210. 连号区间数
  • 原文地址:https://www.cnblogs.com/mirrorlake/p/7347443.html
Copyright © 2011-2022 走看看