bash for mac】的更多相关文章

bash for mac https://sourabhbajaj.com/mac-setup/iTerm/ https://sourabhbajaj.com/mac-setup/iTerm/zsh.html Oh My ZSH https://ohmyz.sh/ https://github.com/robbyrussell/oh-my-zsh/ # curl $ sh -c "$(curl -fsSL https://raw.github.com/robbyrussell/oh-my-zsh…
常见shell : bash  sh zsh windows: git bash    cygwin MAC : terminal iterm netstat 是linux下用于显示网络状态的命令.通过它能统计端口情况,网络连接状态,路由表等信息.在网络开发或运维中,经常会使用netstat来查看网络状态. 常用参数说明: -l或–listening 显示监控中的服务器的Socket. -n或–numeric 直接使用IP地址,而不通过域名服务器. -p或–programs 显示正在使用Sock…
一.ITerm2简介 1.安装 iTerm2 是一款完全免费的,专为 Mac OS 用户打造的命令行应用.直接在官网上http://iterm2.com/ 下载并安装即可. 2.配置 设置ITerm为默认终端 二.安装 oh-my-zsh 1.查看系统有几个shell cat /etc/shells 回显是这个 /bin/bash /bin/csh /bin/ksh /bin/sh /bin/tcsh /bin/zsh bash是mac中terminal自带的shell,把它换成zsh,这个的功…
1. Install groovy plugin 2. Add a step of groovy. (normal & systerm) 3. Execute groovy script import jenkins.model.* def q = Jenkins.instance.queue q.items.findAll{ it.task.name.startsWith('ttt') }.each{ q.cancel(it.task) } Above script is cancel all…
UNIX is a multi-user multitasking-optimized operating system that can run on various hardware platforms. Linux is basically an open-source clone of UNIX,而Unix的所有components都来自于同一个vendor,所以更稳定. A shell in the world of computers refers to a program that…
摘自: http://blog.csdn.net/dc_726/article/details/8576205 1 Groovy是什么? 来看下官网的介绍:http://groovy.codehaus.org Groovy... · is an agile and dynamic language for the Java Virtual Machine · builds upon the strengths of Javabut has additionalpower features ins…
抱歉,这篇博文推迟发布了,人都是有惰性的...看在这个牛逼闪闪的标题就原谅我吧! 为何这篇文章要归类到 mac 下? 第一个问题,稍后我们说明下. zsh是个什么东东? 第二个问题... 你应该稍微接触过一点点shell ,或者了解一点点? 如果不知道 shell ,那就点下广告离开吧, 人生苦短,时间珍贵. 在unix 内核的操作系统中,当然现在衍生出好多分支,linux ,OS X 都算. shell 就算和上面这些系统内核指令打交道的一座桥梁,我们通过键盘输入一种自己容易记忆识别的符号标识…
Django 1.6 最佳实践: 如何设置django项目的设置(settings.py)和部署文件(requirements.txt) 作者: Desmond Chen,发布日期: 2014-05-17, 修改日期: 2014-05-18 在Django 1.6中的settings.py中可以修改130多项设置, 但大多数都继承自默认值. 设置是在web服务器启动时首次载入的, 服务器重启时重新载入, 因此, 程序员们应尽量避免修改正式服务器上使用的settings.py文件. 以下是一些我们…
git bash 或 mac terminal 我们可以使用 mkdir 命令来创建文件夹. 当前目录创建多个文件夹: $ mkdir a b c 会创建 a .b.c 三个文件夹 但是有时候我们需要创建多级文件夹,比如,a/b/c 当然,我们可以使用如下命令实现: $ mkdir a $ cd a $ mkdir b $ cd b $ mkdir c 但是,这样实现感觉太麻烦了,我们可以使用 -p 参数来创建多级文件夹,如: $ mkdir -p a/b/c 这样,一行命令就可以搞定了. 如果…
#1注册GitHub账号 *1)到https://github.com/注册GitHub账号 #2在GitHub上建立GitHub仓库 *1)登录后点击右下方的"new repository"按钮新建一个仓库 *2)填写完仓库信息后点击"creat repository"按钮创建仓库(仓库名字随意填写) 注意不要勾选Initialize this repository with a README #3下载并安装git版本管理工具 *1)到http://git-scm…