babun

Windows下shell神器

為{幸葍}努か 提交于 2020-04-29 21:16:15
想找一个可以在Windows平台玩命令行的东西,不想装虚拟机搞linux,所以找到两个神器 如何升级Babun中的Git Babun中默认已经集成Git,只是有可能不是最新的版本 如果只是更新Babun中的版本,使用命令 pact update git 另外一种情况是,windows上已经安装了git,那么删除Babun中的,它根据环境变量中的配置使用windows上的 #删除Babun中的git pact remove git #安装Babun中的git pact install git 修改Babun主题 最好修改之前看下是否已经安装.oh-my-zsh,默认已经集成了 参考官方说明 进行安装 编辑 ~/.zshrc,将 ZSH_THEME 改为所修改主题的文件名 IDEA中集成Babun Cmder中集成Babun Task parameters /icon "%userprofile%\.babun\cygwin\bin\mintty.exe" /dir "%userprofile%" commands %userprofile%\.babun\cygwin\bin\mintty.exe -o Transparency=0 /bin/env CHERE_INVOKING=1 /bin/zsh.exe 纯属无聊,研究的不深,有失误之处欢迎大家指出! 来源: oschina

Cmder + Babun 打造 Windows 好用的终端工具

不想你离开。 提交于 2020-04-29 20:50:18
Babun a windows shell you will love Babun features the following: Pre-configured Cygwin with a lot of addons Silent command-line installer, no admin rights required pact - advanced package manager (like apt-get or yum) xTerm-256 compatible console HTTP(s) proxying support Plugin-oriented architecture Pre-configured git and shell Integrated oh-my-zsh Auto update feature "Open Babun Here" context menu entry Babun 安装方式: 进入官网点 下载; 下载完成后,解压软件包,找到: install.bat 双击,安装开始,安装完成后,会在桌面创建一个babun的快捷方式。 安装完成后,可以考虑换一下cygwin的源: cd ~ vim .pact/pact.repo PATC_REPO=http://mirrors.163.com/cygwin Babun 用法 { d } »

babun安装,整合到cmder

邮差的信 提交于 2020-03-15 08:32:49
babun Babun的特性: 预装了Cygwin以及许多的插件 默认的命令行安装工具,没有管理员权限要求。 预装了 pact工具,一个高级的包管理器,类似 apt-get或yum xTerm-256兼容的控制台 支持Http(s)的代理 面向插件的架构 配置了 git 和 shell 集成 oh-my-zsh 自动更新机制 集成右键菜单,在此打开Babun Cygwin Babun的核心就是Cygwin,不过它经过了配置。Cygwin是一个不错的工具,但是有很多问题需要花一些时间来配置它,让它易于应用。Babun做了一些配置,并且包含了很多重要的工具包,使得它非常易用。 Package manager Babun提供了一个包管理器,pact。类似于apt-get 或 yum。pact使得安装,搜索,更新和删除cygwin的工具包非常容易。pact --help快去看一下它怎么使用吧。 Shell Babun的shell经过了微调,这样可以提供更好的用户体验。有两个预配置的shell - bash 和 zsh,可以马上使用。zsh是默认的shell。Babun的shell具有如下的特征: 语法高亮 UNIX工具 软件开发工具 git改进 自定义的脚本和别名 还有一些其他功能 Console Mintty是在babun中用的控制台,它具有xterm-256模式的特征,良好字体简洁画面

How to Integrate babun shell in VS code

≡放荡痞女 提交于 2019-12-12 08:06:56
问题 I have tried changing the settings for "terminal.integrated.shell.windows" to babun mintty location. But the babun shell window opens separately and doesn't integrate with the VS code. Anyone knows how to achieve this? 回答1: After trying for 2 hours finally made it work. Before reading my way of doing this, you might want to got through this issue first. By default babun is installed in C:\Users\13000\.babun\ . So we can configure it by overriding user setting in VS Code as: "terminal

Windows上好用工具之cmd

为君一笑 提交于 2019-11-30 07:13:52
Windows下CMD不好用,远没有Linux,或者一些SSH工具用起来方便。其实Windows下,也有一些不错的工具替代CMD: 0.powercmd 经过比较,我最终选择了这款,这里补充一下截图: 1.powershell PowerShell在线教程: http://www.pstips.net/powershell-online-tutorials/ 下载及微软官方帮助地址: https://msdn.microsoft.com/en-us/library/dd835506(VS.85).aspx 2.MinGW MinGW是一个可自由使用和自由发布的Windows特定 头文件 和使用GNU工具集导入库的集合,允许你在 GNU / Linux 和Windows平台生成本地的Windows程序而不需要第三方C运行时库。 参考官网: http://www. mingw .org (不过可能访问不了,需要穿越GFW) 帮助说明: http://www.mingw.org/wiki/Getting_Started 下载地址: http://mingw.en.softonic.com/ 3.Cygwin CYGWin :在windows平台上运行的类UNIX模拟环境,是cygnus solutions公司开发的自由软件。 Cygwin 安装方便,有软件包管理器,可以直接装grep

Babun 中文乱码

放肆的年华 提交于 2019-11-28 17:39:40
babun默认编码是UTF-8的,而windows的cmd命令输出是GBK编码的,所以在Babun里面运行ipconfig等windows命令时,中文会是一大堆乱码。 1. 第一步 $ vi ~/.bahunrc 在打开的文件里面加入 chcp 65001 $ source ~/.babunrc 2. 第二步 在babun自带的shell(mintty)右上角右键options-text,在character set选择default或者GBK 来源: https://www.cnblogs.com/guido/p/11416828.html