我已经创建了我在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中,无法添加这些脚本以通过设置/键盘/应用程序快捷方式中的快捷方式运行:我收到类似于此的错误:
我认为必须安装一些应用程序来运行它。但经过安装xclip
和git
它仍然无法正常工作。
@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年
更重要的是,我的意思是应该有一个
—
2013年
/
。在你的问题中你得到它#! bin/bash
而不是#!/bin/bash
#!/bin/sh
。另外,请显示输出ls -l /home/cipricus/Documents/scripts/firefox/search-google.sh
。