Eclipse的Bash脚本插件?

时间:2009-08-31 10:28:43

标签: eclipse bash ide

是否有适合Eclipse的bash插件?我唯一的要求是语法高亮。我已经google了,但没有看到任何看起来像“the” bash插件的内容。

11 个答案:

答案 0 :(得分:140)

ShellEd看起来很有前途,语法突出显示,并有积极的评论,虽然我自己没有尝试过。 Redhat的发行版包含approved。关于Eclipse网站上的ShellEd plugin page以及他们wiki上的installation instructions,还有更多信息。

请注意,如果您没有运行最新版本的Eclipse(截至撰写本文时,Juno),您将需要使用旧版本,例如2.0.1与Indigo兼容。

答案 1 :(得分:36)

编辑(2013年8月3日):使用http://sourceforge.net/projects/shelled/files/shelled/update/获取最新版本

编辑(2013年2月25日):不需要在Eclipse 4.2.1上为shelled 2.0.2安装linux工具。此外,无需下载zip文件。这是shelled 2.0.2的更新站点:http://sourceforge.net/projects/shelled/files/shelled/ShellEd%202.0.2/update/

旧帖子:

我也喜欢Shelled。如果您现在安装它,您需要下载zip文件并在Eclipse的安装新软件向导中指向它。您还需要从

安装man插件
http://download.eclipse.org/technology/linuxtools/update

答案 2 :(得分:13)

Bash版本3的调试器(Bourne再次shell)。
Eclipse插件。仅适用于shell脚本编辑器ShellEd。 basheclipse

答案 3 :(得分:11)

只需按照ShellEd's InstallGuide

的官方说明操作即可

答案 4 :(得分:7)

免费EclipseColorer Editor可以为bash脚本执行语法突出显示。

但是,它没有使用Eclipse的“大纲视图”,即它没有用函数定义列表填充它。 有时语法突出显示只是在脚本中间停止。然后重新打开脚本会有所帮助。

答案 5 :(得分:4)

<强>带壳

以下解决方案如何安装ShellEd对我不起作用。依赖关系上有很多错误。找到适合我的解决方案。

系统:

Linux Lubuntu 12.04

IDE:

Eclipse Kepler

在Eclipse中,转到帮助&gt;安装新软件

点击添加...

添加以下位置http://download.eclipse.org/releases/kepler,并将其命名为“Eclipse Kepler”。

单击“确定”。

选择新创建的Eclipse Kepler站点。

展开底部的Web,XML,Java EE和OSGi企业开发部分。 选择WST服务器适配器。

单击“下一步”,然后像往常一样安装。

重启Eclipse

然后同样添加ShellEd repo,如上所示: http://sourceforge.net/projects/shelled/files/shelled/update/

安装它。

重启Eclipse。

也在Eclipse Indigo中工作,如下所述: http://docs.wraithmonster.com/install-shelled

享受:)

答案 6 :(得分:2)

我会在这里重现一个很好的教程,因为我丢失了这篇文章并花些时间再次找到它!

使用Colorer库为Eclipse添加语法高亮显示

假设您有一个HRC文件,其中包含Eclipse不支持的某些编程语言的语法和词法结构(例如D / Iptables或任何其他脚本语言)。

使用EclipseColorer插件,您可以轻松添加对它的支持。

转到帮助 - &gt;安装新软件,然后单击添加..  在“名称”字段中写入Colorer,在“位置”字段中写入http://colorer.sf.net/eclipsecolorer/

选择您刚刚在工作中添加的条目:组合框,等待组件列表填充,然后单击全选

单击“下一步”并按照说明进行操作

安装插件后,关闭Eclipse。

将您的HRC文件复制到 [EclipseFolder] \插件\ net.sf.colorer_0.9.9 \ colorer \ HRC \汽车\类型

[EclipseFolder] = /home/myusername/.eclipse

使用您喜欢的文本编辑器打开

[EclipseFolder] \插件\ net.sf.colorer_0.9.9 \ colorer \ HRC \汽车\ empty.hrc

添加适当的原型元素。例如,如果您的HRC文件是d.hrc,则empty.hrc将如下所示:

<?xml version="1.0" encoding='Windows-1251'?>
 <!DOCTYPE hrc PUBLIC
 "-//Cail Lomecb//DTD Colorer HRC take5//EN"
 "http://colorer.sf.net/2003/hrc.dtd"
 >
 <hrc version="take5" xmlns="http://colorer.sf.net/2003/hrc"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
 xsi:schemaLocation="http://colorer.sf.net/2003/hrc http://colorer.sf.net/2003/hrc.xsd"
 ><annotation><documentation>
 'auto' is a place for include
 to colorer your own HRCs
</documentation></annotation>
    <prototype name="d" group="main" description="D">
         <location link="types/d.hrc"/>
        <filename>/\.(d)$/i</filename>
 </prototype>
</hrc>

保存更改并关闭文本编辑器

打开Eclipse并转到Window - &gt;偏好 - &gt;一般 - &gt;编辑 - &gt;文件关联

在文件类型部分中,单击添加..并填写相应的文件类型(例如.d)

单击“确定”,然后单击列表中新添加的条目

在关联的编辑器部分中,单击添加..,选择颜色编辑器,然后按确定

好的,困难的是你必须了解HCR语法。

你可以查看

[EclipseFolder] /net.sf.colorer_0.9.9/colorer/hrc/common.jar

了解它是如何做到并探索许多其他hcr的文件。此刻我没有找到任何文件。

我的礼物是一个基本且不完整的iptables语法亮点。如果你有所改进请与我分享。

<?xml version="1.0" encoding="Windows-1251"?>
<!DOCTYPE hrc PUBLIC "-//Cail Lomecb//DTD Colorer HRC take5//EN" "http://colorer.sf.net/2003/hrc.dtd">
<hrc version="take5" xmlns="http://colorer.sf.net/2003/hrc" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://colorer.sf.net/2003/hrc http://colorer.sf.net/2003/hrc.xsd">
    <type name="iptables">
        <annotation>
            <develby> Mario Moura - moura.mario  gmail.com</develby>
            <documentation>Support iptables EQL language</documentation>
            <appinfo>
                  <prototype name="iptables" group="database" description="iptables">
                       <location link="iptables.hrc"/>
                       <filename>/\.epl$/i</filename>
                  </prototype>  
            </appinfo>
        </annotation>

        <region name="iptablesTable" parent="def:Keyword"/>
        <region name="iptablesChainFilter" parent="def:Symbol"/>
        <region name="iptablesChainNatMangle" parent="def:NumberDec"/>
        <region name="iptablesCustomDefaultChains" parent="def:Keyword"/>
        <region name="iptablesOptions" parent="def:String"/>
        <region name="iptablesParameters" parent="def:Operator"/>
        <region name="iptablesOtherOptions" parent="def:Comment"/>
        <region name="iptablesMatchExtensions" parent="def:ParameterStrong"/>
        <region name="iptablesTargetExtensions" parent="def:FunctionKeyword"/>
        <region name="pyComment" parent="def:Comment"/>
          <region name="pyOperator" parent="def:Operator"/>
          <region name="pyDelimiter" parent="def:Symbol"/>


        <scheme name="iptablesTable">
            <keywords ignorecase="no" region="iptablesTable">
                <word name="mangle"/>
                <word name="filter"/>
                <word name="nat"/>
                <word name="as"/>
                <word name="at"/>
                <word name="asc"/>
                <word name="avedev"/>
                <word name="avg"/>
                <word name="between"/>
                <word name="by"/>
            </keywords>
        </scheme>

        <scheme name="iptablesChainFilter">
            <keywords ignorecase="no" region="iptablesChainFilter">
                <word name="FORWARD"/>
                <word name="INPUT"/>
                <word name="OUTPUT"/>
            </keywords>
        </scheme>

        <scheme name="iptablesChainNatMangle">
            <keywords ignorecase="no" region="iptablesChainNatMangle">
                <word name="PREROUTING"/>
                <word name="POSTROUTING"/>
                <word name="OUTPUT"/>
            </keywords>
        </scheme>

        <scheme name="iptablesCustomDefaultChains">
            <keywords ignorecase="no" region="iptablesCustomDefaultChains">
                <word name="CHTTP"/>
                <word name="CHTTPS"/>
                <word name="CSSH"/>
                <word name="CDNS"/>
                <word name="CFTP"/>
                <word name="CGERAL"/>
                <word name="CICMP"/>
            </keywords>
        </scheme>


        <scheme name="iptablesOptions">
            <keywords ignorecase="no" region="iptablesOptions">
                <word name="-A"/>
                <word name="--append"/>
                <word name="-D"/>
                <word name="--delete"/>
                <word name="-I"/>
                <word name="--insert"/>
                <word name="-R"/>
                <word name="--replace"/>
                <word name="-L"/>
                <word name="--list"/>
                <word name="-F"/>
                <word name="--flush"/>
                <word name="-Z"/>
                <word name="--zero"/>
                <word name="-N"/>
                <word name="--new-chain"/>
                <word name="-X"/>
                <word name="--delete-chain"/>
                <word name="-P"/>
                <word name="--policy"/>
                <word name="-E"/>
                <word name="--rename-chain"/>
            </keywords>
        </scheme>

        <scheme name="iptablesParameters">
            <keywords ignorecase="no" region="iptablesParameters">
                <word name="-p"/>
                <word name="--protocol"/>
                <word name="-s"/>
                <word name="--source"/>
                <word name="-d"/>
                <word name="--destination"/>
                <word name="-j"/>
                <word name="--jump"/>
                <word name="-g"/>
                <word name="--goto"/>
                <word name="-i"/>
                <word name="--in-interface"/>
                <word name="-o"/>
                <word name="--out-interface"/>
                <word name="-f"/>
                <word name="--fragment"/>
                <word name="-c"/>
                <word name="--set-counters"/>
            </keywords>
        </scheme>

        <scheme name="iptablesOtherOptions">
            <keywords ignorecase="no" region="iptablesOtherOptions">
                <word name="-v"/>
                <word name="--verbose"/>
                <word name="-n"/>
                <word name="--numeric"/>
                <word name="-x"/>
                <word name="--exact"/>

                <word name="--line-numbers"/>
                <word name="--modprobe"/>
            </keywords>
        </scheme>

        <scheme name="iptablesMatchExtensions">
            <keywords ignorecase="no" region="iptablesMatchExtensions">
                <word name="account"/>
                <word name="addrtype"/>
                <word name="childlevel"/>
                <word name="comment"/>
                <word name="connbytes"/>
                <word name="connlimit"/>
                <word name="connmark"/>
                <word name="connrate"/>
                <word name="conntrack"/>
                <word name="dccp"/>
                <word name="dscp"/>
                <word name="dstlimit"/>
                <word name="ecn"/>
                <word name="esp"/>
                <word name="hashlimit"/>
                <word name="helper"/>
                <word name="icmp"/>
                <word name="ipv4options"/>
                <word name="length"/>
                <word name="limit"/>
                <word name="mac"/>
                <word name="mark"/>
                <word name="mport"/>
                <word name="multiport"/>
                <word name="nth"/>
                <word name="osf"/>
                <word name="owner"/>
                <word name="physdev"/>
                <word name="pkttype"/>
                <word name="policy"/>
                <word name="psd"/>
                <word name="quota"/>
                <word name="realm"/>
                <word name="recent"/>
                <word name="sctp"/>
                <word name="set"/>
                <word name="state"/>
                <word name="string"/>
                <word name="tcp"/>
                <word name="tcpmss"/>
                <word name="tos"/>
                <word name="u32"/>
                <word name="udp"/>                                                                              
            </keywords>
        </scheme>


    <scheme name="iptablesTargetExtensions">
            <keywords ignorecase="no" region="iptablesTargetExtensions">
                <word name="BALANCE"/>
                <word name="CLASSIFY"/>
                <word name="CLUSTERIP"/>
                <word name="CONNMARK"/>
                <word name="DNAT"/>
                <word name="DSCP"/>
                <word name="ECN"/>
                <word name="IPMARK"/>
                <word name="IPV4OPTSSTRIP"/>
                <word name="LOG"/>
                <word name="MARK"/>
                <word name="MASQUERADE"/>
                <word name="MIRROR"/>
                <word name="NETMAP"/>
                <word name="NFQUEUE"/>
                <word name="NOTRACK"/>
                <word name="REDIRECT"/>
                <word name="REJECT"/>
                <word name="SAME"/>
                <word name="SET"/>
                <word name="SNAT"/>
                <word name="TARPIT"/>
                <word name="TCPMSS"/>
                <word name="TOS"/>
                <word name="TRACE"/>
                <word name="TTL"/>
                <word name="ULOG"/>
                <word name="XOR"/>                                                                          
            </keywords>
        </scheme>



        <scheme name="iptables">
              <inherit scheme="iptablesTable"/>
              <inherit scheme="iptablesChainFilter"/>
              <inherit scheme="iptablesChainNatMangle"/>
              <inherit scheme="iptablesCustomDefaultChains"/>                                     
              <inherit scheme="iptablesOptions"/>
              <inherit scheme="iptablesParameters"/>
              <inherit scheme="iptablesOtherOptions"/>
              <inherit scheme="iptablesMatchExtensions"/>
              <inherit scheme="iptablesTargetExtensions"/>

   <!-- python operators : http://docs.python.org/ref/keywords.html -->
   <keywords region="pyOperator">
    <symb name="+"/>
    <symb name="-"/>
    <symb name="*"/>
    <symb name="**"/>
    <symb name="/"/>
    <symb name="//"/>
    <symb name="%"/>
    <symb name="&lt;&lt;"/>
    <symb name=">>"/>
    <symb name="&amp;"/>
    <symb name="|"/>
    <symb name="^"/>
    <symb name="~"/>
    <symb name="&lt;"/>
    <symb name=">"/>
    <symb name="&lt;="/>
    <symb name=">="/>
    <symb name="=="/>
    <symb name="!="/>
    <symb name="&lt;>"/>
   </keywords>


   <!-- basic python comment - consider it everything after # till the end of line -->
   <block start="/#/" end="/$/" region="pyComment" scheme="def:Comment"/>

   <block start="/(u|U)?(r|R)?(&quot;{3}|&apos;{3})/" end="/\y3/"
      region00="def:PairStart" region10="def:PairEnd"
      scheme="def:Comment" region="pyComment" />
      <!-- TODO: better scheme for multiline comments/docstrings -->
      <!-- scheme="StringCommon" region="pyString" /> -->


   <!-- python delimiters : http://docs.python.org/ref/delimiters.html -->
   <keywords region="pyDelimiter">
    <symb name="+"/>
    <symb name="("/>
    <symb name=")"/>
    <symb name="["/>
    <symb name="]"/>
    <symb name="{"/>
    <symb name="}"/>
    <symb name="@"/>
    <symb name=","/>
    <symb name=":"/>
    <symb name="."/>
    <symb name="`"/>
    <symb name="="/>
    <symb name=";"/>
    <symb name="+="/>
    <symb name="-="/>
    <symb name="*="/>
    <symb name="/="/>
    <symb name="//="/>
    <symb name="%="/>
    <symb name="&amp;="/>
    <symb name="|="/>
    <symb name="^="/>
    <symb name=">>="/>
    <symb name="&lt;&lt;="/>
    <symb name="**="/>
   </keywords>



        </scheme>
    </type>

在此之后你必须将文件保存为iptables.hcr并在jar中添加:

[EclipseFolder] /net.sf.colorer_0.9.9/colorer/hrc/common.jar

基于: https://ohadsc.wordpress.com/2012/05/26/adding-syntax-highlighting-for-new-languages-to-eclipse-with-the-colorer-library/

答案 7 :(得分:1)

ShellEd是Eclipse的一个很好的插件。

此链接帮助我安装它:http://mattnorris.me/blog/install-eclipse-shelled-plugin/

步骤:

  1. 下载ShellEd:http://sourceforge.net/projects/shelled/files/latest/download - 该文件是一个压缩存档,名称类似于net.sourceforge.shelled-site-2.0.x.zip。

  2. 然后点击“帮助”&gt;安装新软件...

  3. 点击右上角的添加....
  4. 点击存档...
  5. 导航到保存压缩档案net.sourceforge.shelled-site-2.0.x.zip的位置并选择它。
  6. 单击“确定”。 (不要担心可选的Name字段.Eclipse会自动命名。)
  7. 选择新的Shell脚本复选框。
  8. 单击“下一步”。
  9. 再次点击下一步。
  10. 选择“我接受许可协议的条款。”
  11. 单击“完成”。
  12. 重启Eclipse。

答案 8 :(得分:1)

现在存在一个名为&#34; Bash编辑器&#34;的专用bash脚本插件。 它可以在eclipse市场上买到:

Bash editor log

在搜索&#34; bash&#34;时,您可以在https://marketplace.eclipse.org/content/bash-editor或由marketplace客户端找到它。

该插件目前被标记为BETA但稳定。

答案 9 :(得分:0)

我尝试过ShellEd,但即使重新启动eclipse,也无法识别我的任何shell脚本。我添加了ksh解释器并将其设置为默认值,但它没有任何差异。

最后,我关闭了打开的标签并显示了一个ksh文件,然后重新打开它。这使它正常工作。使用它一段时间后,我也可以推荐它。

答案 10 :(得分:0)

它适用于氧气。

1)转到帮助&gt; Eclipse Marketplace ...并搜索“DLTK”。你会发现像“Shell Script(DLTK)5.8.0”这样的东西。安装它并重新启动Eclipse。

(或者从这个网页拖放“安装”按钮到你的Eclipse:https://marketplace.eclipse.org/content/shell-script-dltk

Shell Script (DLTK)

2)右键单击Project Explorer中的shell / batch文件&gt;打开用&gt;其他...并选择Shell脚本编辑器。您还可以将编辑器与该扩展名的所有文件相关联。

Shell script editor