我有一个指向可执行文件的符号链接,我创建了如下:
$ ln -s /home/x/app/wps_office/wps
如果在命令行上键入:
$ /home/x/app/wps_office/wps
然后我的应用程序正确启动,但如果我尝试通过符号链接启动我的应用程序,则会出现以下错误:
$ wps
wps does not exist!
只是为了确认符号链接是否正确;
$ readlink wps
/home/x/app/wps_office/wps
folder/home/x/bin是我创建符号链接的地方,这个文件夹包含在我的$PATH变量中。
我不知道这里出了什么问题,为什么我的应用程序在使用符号链接时不执行?
快速更新;
我刚刚快速浏览了symlink指向的文件的内容,看起来消息
wps does not exist
实际上来自应用程序,这意味着symlink实际上是正确的。我不知道确切的原因,因为我觉得奇怪的是,当我不使用符号链接时,一切都正常工作。我需要更仔细地查看代码来找出答案。符号链接指向的文件的代码:
#!/bin/bash
gOpt=
gTemplateExt=("wpt" "dot" "dotx")
gBinPath=$(dirname "$0")
if [ -d "${gBinPath}/office6" ]; then
gInstallPath=${gBinPath}
else
gInstallPath=/opt/kingsoft/wps-office
fi
gApp=wps
function parse_arg()
{
if [ $# -eq 1 ] ; then
ext="${1##*.}"
if [ "" = "${ext}" ] ; then
return 0
fi
for i in ${gTemplateExt}
do
if [ "${ext}" = "${i}" ] ; then
gOpt=-t
fi
done
fi
}
function run()
{
oldPwd="${PWD}"
if [ -e "${gInstallPath}/office6/${gApp}" ] ; then
if [ -d /usr/lib32/gtk-2.0 ]; then
export GTK_PATH=/usr/lib32/gtk-2.0
fi
${gInstallPath}/office6/${gApp} ${gOpt} "$@" || ${gBinPath}/wps_error_check.sh ${gInstallPath}/office6/${gApp}
else
echo "${gApp} does not exist!"
fi
}
function main()
{
parse_arg "$@"
run "$@"
}
main "$@"
请注意它显示
echo "${gApp} does not exist!"
的那一行,这是我的错误的来源。 最佳答案
换行gInstallPath=/opt/kingsoft/wps-office
在剧本里gInstallPath=/home/x/app/wps_office
关于linux - 指向可执行文件的符号链接(symbolic link)无法启动应用程序,错误:<符号链接(symbolic link)>不存在,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/25220803/