使用alt + f2(debian / mate)的启动shell脚本

时间:2016-08-19 22:29:34

标签: linux shell symlink

我有运行应用程序的脚本

#!/bin/bash
wine /opt/winbox.exe

的文件夹

/home/myuser/scripts/winbox.sh

我为它创建了符号链接

sudo ln -s /home/myuser/scripts/winbox.sh /usr/local/bin/winbox

但是在运行之后

alt+f2 --> winbox

我有错误

Error when getting information for file '/home/myuser/winbox': No such file or directory

我犯了一个错误以及如何使用alt + f2运行脚本?

1 个答案:

答案 0 :(得分:0)

解决了问题。使用gksudo对话框设置指令

#!/bin/sh
exec 2>~/winbox.log
set -x
sh -c "gksudo wine /opt/winbox/winbox.exe"