我的rtx用wine运行一切正常,但是别人发来的附件需要保存下来才能打开,比较麻烦,于是做了doc文档和oowriter的关联,过程如下。
在.wine下面做一个doc.reg
- [bl@bl-desktop:~/.wine]$ cat doc.reg
-
[HKEY_CLASSES_ROOT\.doc]
-
@="DOCfile"
-
"Content Type"="application/doc"
-
[HKEY_CLASSES_ROOT\DOCfile\Shell\Open\command]
-
@="/home/bl/.wine/oowrite.sh \"%1\""
建立一个oowrite.sh的shell脚本,赋予运行权限(如果oowriter能够打开,但是找不到文件,是路径的问题,自行根据情况调整路径)
- [bl@bl-desktop:~/.wine]$ cat oowrite.sh
- #!/bin/bash
- #echo path:$1
-
file=$(echo $1|sed "s/C://" | sed 's/\\/\//g')
- #echo path1:$file
-
file="/home/bl/.wine/dosdevices/c:$file"
-
/usr/bin/oowriter "$file"
阅读(1266) | 评论(0) | 转发(0) |