📄 80chvt-suid
字号:
#! /bin/sh## Copyright Matthias Hentges <devel@hentges.net> (c) 2006# License: GPL (see http://www.gnu.org/licenses/gpl.txt for a copy of the license)## Filename: chvt-SUID.sh# Date: 28-May-06## Sets the SUID bit on chvt to allow changing to the VT from inside X by# any user. Since a SUID binary still is a security risk, we chmod only# when keylaunch is used and not by default.#for target in /usr/bin/chvt.console-toolsdo if test "`ls -l "$target" | awk '{print $1}'|cut -c 2-4`" != "rws" then echo "Making [$target] SUID root..." chmod u+s "$target" else echo "Ignoring [$target]" fidone
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -