Windows下Shell开发运行工具

1 安装sublime text3

2 sublime text3安装package control

使用Ctrl+`快捷键或者通过View->Show Console菜单打开命令行,粘贴如下代码:

import urllib.request,os; pf = 'Package Control.sublime-package'; ipp = sublime.installed_packages_path(); urllib.request.install_opener( urllib.request.build_opener( urllib.request.ProxyHandler()) ); open(os.path.join(ipp, pf), 'wb').write(urllib.request.urlopen( 'http://sublime.wbond.net/' + pf.replace(' ','%20')).read())

3 sublime text3 安装ShellScriptImproved插件

3.1 选择菜单preferences->package control

Windows下Shell开发运行工具_第1张图片
image.png

3.2 输入 并选择install package

Windows下Shell开发运行工具_第2张图片
image.png

3.3 输入shell 并选择ShellScriptImproved

Windows下Shell开发运行工具_第3张图片
image.png

3.4 建立一个脚本文件

Windows下Shell开发运行工具_第4张图片
image.png

4 脚本的运行

脚本运行一般要到linux环境下才能运行,这里可以借助工具cmder进行运行测试
1)下载地址 https://github.com/cmderdev/cmder/releases/latest
2)解压到自己的工作目录
3)执行cmder.exe,打开cmder
4)进入脚本目录,输入bash进入bash解释器
5)执行脚本./test.sh,执行结果如下:

Windows下Shell开发运行工具_第5张图片
image.png

你可能感兴趣的:(Windows下Shell开发运行工具)