因为公司办公使用的是eclipse,所以在mac下我也继续使用eclipse。
但是在使用eclipse 的过程中我发现了个问题,eclipse不能通过图标启动多个eclipse。
想要启动第二个就需要在terminal中输入命令启动:
open -n /Applications/Eclipse.app
每次都需要打开终端输入太麻烦了。
所以制作一个可双击启动的脚本。
步骤:
- 制作一个command文件。
touch openEclipse.command
- 使用文本编辑器打开
openEclipse.command
- 在
openEclipse.command
中输入上述打开第二个eclipse的终端命令。请记住,在第一行一定要添加
#!/bin/bash
,然后第二行才开始写命令
#!/bin/bash
open -n /Applications/Eclipse.app
- 赋予文件运行权限
cd到文件所在的位置
chmod +x openEclipse.command
将shell脚本封装成app
根据这个老哥的方法进行封装自动操作封装app