Contents
  1. 1. 安装ShellED
  2. 2. 配置ShellED
  3. 3. 配置其他Unix命令工具
  4. 4. 第一个Shell
  5. 5. 在Console中使用交互式Shell

在Windows系统下,给Eclipse安装配置ShellED插件,支持Unix Shell脚本和grep、sed、awk工具的语法高亮、悬停显示帮助文档和执行。

以前提过用Cygwin可以满足在Windows下用很多Unix命令的需求。除此之外,Git Bash(想不到Git命令工具也顺带提供了不少工具)、Win-Bash(只有exe的世界)等也是不错的选择。

最近依然是在Windows下,想用Eclipse写Unix Shell脚本。踩了不少坑后,终于成功了,赶紧总结下!


我的实验环境:

  • Windows 7 Operating System
  • Eclipse Java Kepler SR2 Win32 x86 64bit (version 4.3.x)
  • Cygwin 2.871(64bit)

安装ShellED

墙内外不少提到ShellED安装的,都说要先用http://download.eclipse.org/technology/Linuxtools/update安装man page viewer(顾名思义,用man命令查看帮助页面的),然后再装ShellED。但最新版的ShellED 2.0.3已经集成了man page viewer(在net.sourceforge.shelled-site-2.0.3.zip的plugins中已有org.eclipse.linuxtools.man.core_1.1.0.201306111610.jar),Eclipse对这种冲突会先卸了man page viewer再装ShellED。

根据官方安装文档(藏得不是一般深……),有两种安装方法:

Using the update site
Use the regular install method with the following update site link
http://sourceforge.net/projects/shelled/files/shelled/update/

Using zipped update site

  1. Download net.sourceforge.shelled-site-2.0.3.zip
  2. Select Help > Install New Software…
  3. Now select the “Add” again, use the “Archive…” button to select the downloaded zip-file as source.
  4. Install ShellEd

两种我都试过,没有问题。另外在ShellED的sourceforge页面看到说已并入Eclipse的DLKT项目,不知道是不是其中的TCL,不过那并不是我的所需。

配置ShellED

Man Pages 命令帮助
Window - Preferences - Man Pages 的 Man executable path 改为 cygwin安装路径\bin\man.exe

Shell Script 解释器
Window - Preferences - Shell Script - Interpreters 点 Add, 向 Interpreter executable 填入cygwin安装路径\bin\bash.exe

File line delimiter 换行符
Window - Preferences - General - Workspace 的 New text file line delimiter 选Other中的Unix,即新文本文件将用Unix的换行符

配置其他Unix命令工具

配置完ShellED后,已经可以使用一般的Shell命令了,如if、for等。但实际更需要的是grep、sed、awk等强大的Unix工具。

cygwin安装路径\bin加到系统环境变量中,注意重启Eclipse,则Shell脚本就可以使用cygwin的其他Unix命令了。


第一个Shell

新建Shell Script工程
File - New - Other - Shell Script - Shell Script Project

新建Shell Script

shell.png

提供了语法高亮,悬停帮助文档等。直接点击Run,在Console中就是可以得到该脚本的执行结果。


在Console中使用交互式Shell

StackOverflow:Is there an Eclipse plugin to run system shell in the Console?

Windows Shell
Run - External Tools - External Tools Configurations - 选中Program - New launch Configuration,Name填cmd,Location填C:\Windows\System32\cmd.exe,Working Directory填${workspace_loc:/项目名称}。点击Run cmd,进入交互式Windows Shell中。

Cygwin Shell
同上的步骤,但不知Eclipse是有什么问题,会终止任务。
若用ShellED配参-i,则提示

bash: cannot set terminal process group (-1): Inappropriate ioctl for device
bash: no job control in this shell

且终止任务。据悉Emacs配置Cygwin也有类似问题。

若在launch Configuration的Arguments中填入脚本名如ddd.sh,则点击Run cygwin就相当于用ShellED配置了解释器。

这块内容可能涉及Cygwin或Eclipse问题,到此打住,暂时不做更多研究了。

Contents
  1. 1. 安装ShellED
  2. 2. 配置ShellED
  3. 3. 配置其他Unix命令工具
  4. 4. 第一个Shell
  5. 5. 在Console中使用交互式Shell