-1

/etc/NetworkManager/dispatcher.d 中的脚本将获得 exec,并且参数将由 NetworkManager 传递给脚本。

我的一台笔记本电脑 BIOS 出现故障,我必须手动同步时间,然后进行系统升级 BTW。我正在使用脚本来自动执行此任务。这是脚本:#!/bin/sh

IF=$1
STATUS=$2

if [ "$STATUS"x != 'up'x -o "$(date +%Y)" -gt "2012"  ] ;then
   exit
fi

logger  "==$0=="
wait_for_process(){
    PNAME=$1
    PID=`pgrep $PNAME`
    while [ -z "$PID" ];do
        logger "waiting $1 running for another 3 sec.."
        sleep 3;
        PID=`pgrep $PNAME`
    done
    logger "$1 is running!"
}
wait_for_process nm-applet
wait_for_process lxpanel

export DISPLAY=$(echo $DISPLAY | cut -c -2)

if [ -z $DISPLAY ];then
    export DISPLAY=:0
fi

#below cmd will yield null string for $user
user=$(who | grep "$DISPLAY" | awk '{print $1}' | tail -n1)
#so I have to hardcode the user name:(
user=xxx
export XAUTHORITY="/home/$user/.Xauthority"

logger "Display $DISPLAY user $user"

su $user -c "xterm -e 'sudo /usr/bin/ntpd -qdg && sudo yaourt -Syua' &" || logger "cannot run xterm"

(脚本在 x 窗口之前调用,以 root 身份运行)

user=$(who | grep "$DISPLAY" | awk '{print $1}' | tail -n1)找不到登录用户名。但它适用于 xterm。有人可以帮忙吗?

我正在使用archlinux i686 + openbox + lxpanel

编辑:我想找到真正的登录用户名,而脚本是由 root 运行的。

4

1 回答 1

0

您是否正在寻找运行脚本的用户的名称?怎么样:

user=$( id -un )
于 2012-04-16T13:55:26.027 回答