|
楼主 |
发表于 2007-4-10 08:13:26
|
显示全部楼层
Post by galilette
pipeline and back quote are features of shell, they are not understood by the -e instruction (you're invoking a raw command, not a shell)
instead, write up a shell script and put it in your path, e.g.,
~/bin/tmp.sh:
#!/bin/sh
xclip -o | sdcv | more
then urxvt -e tmp.sh
多谢,我已从你的提示采用了:urxvt -e sh -c "xclip -o | sdcv | less"
非常管用呵呵,现在是真正的用sdcv实现了鼠标取词了;p
great!
可惜这样子似乎不支持中文,也不知还有什么解决方法呢?
看了看,好像主要是xclip不支持中文的原因 T_T |
|