无法从Xfce键盘快捷键运行Internet搜索脚本


0

我已经创建了我在Lubuntu / Lxde下成功使用的不同脚本,包括一些可以通过键盘快捷键运行的脚本,它可以启动firefox并在互联网上搜索所选文本。

例如,如果与快捷方式相关联,此脚本应在Google中搜索所选文本:

#! bin/sh

sh -c 'firefox "https://www.google.com/search?q='$'(xclip -o)"'  

一个翻译法语到英语:

#! bin/sh

sh -c 'firefox "http://translate.google.com/#fr/en/$(xclip -o)"'

等等

但是在Mint / Xfce中,无法添加这些脚本以通过设置/键盘/应用程序快捷方式中的快捷方式运行:我收到类似于此的错误:

在此输入图像描述

我认为必须安装一些应用程序来运行它。但经过安装xclipgit它仍然无法正常工作。


1
你有一个错误的shebang线,那是一个错字吗?它应该是#!/bin/sh。另外,请显示输出ls -l /home/cipricus/Documents/scripts/firefox/search-google.sh
terdon 2013年

@terdon:输出:$ ls -l /home/cipricus/Documents/scripts/firefox/search-google.sh -rwxrwxr-x 1 cipricus cipricus 75 Nov 29 20:09 /home/cipricus/Documents/scripts/firefox/search-google.sh 。脚本的形式工作正常,我的复制/粘贴可能有问题吗?

和shebang线?
terdon 2013年

不确切地知道你说的是错的。你说:“它应该是#!/ bin / sh”。你的意思之间没有空格!/?我只是打开我的其他工作脚本并粘贴在这里

1
更重要的是,我的意思是应该一个/。在你的问题中你得到它#! bin/bash而不是#!/bin/bash
2013年

Answers:


0

根据要求,我发布我的评论作为答案。

看起来你有一个糟糕的shebang线。尝试

#!/bin/bash

代替

#! bin/bash

这个空间不应该是一个问题,然而,/之前bash是必不可少的。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.