码迷,mamicode.com
首页 > 其他好文 > 详细

su命令使用范例

时间:2018-02-09 17:35:19      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:命令使用   password   环境变量   改变   ott   目录   use   switch   本质   

su switch user

$ ls

/home/scott/libby

$ whoami

scott

$ su gromit

Password:

$ whoami

gromit

$ ls

/home/scott/libby

这里su改变用户时目录并没有发生变化。从本质上来说,你已经变成了 gromit ,但使用的仍然是 scott 的环境变量。

su [-|-l|--login] 此选项可以使用户切换到新用户时,等同于新用户从控制台登录。如下例:

$ ls

/home/scott/libby

$ whoami

scott

$ su -l gromit

Password:

$ whoami

gromit

$ ls

/home/gromit


su命令使用范例

标签:命令使用   password   环境变量   改变   ott   目录   use   switch   本质   

原文地址:http://blog.51cto.com/2685141/2070689

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!