首页 > 代码库 > mac补全环境配置
mac补全环境配置
bash自动补全:https://my.oschina.net/tsl0922/blog/178775
xxxxx-MacBook-Air:~ xxxxxx$ cat .bashrc [ -r "~/.bash_profile" ] && . "~/.bash_profile" # 配置 ll 等命令 alias l=‘ls -alFG‘ alias la=‘ls -AFG‘ alias ll=‘ls -lAhFG‘ # 配置默认 python 环境 #source ~/.py27/bin/activate # ssh scp 自动补全 _complete_ssh_hosts () { COMPREPLY=() cur="${COMP_WORDS[COMP_CWORD]}" comp_ssh_hosts=`awk ‘{split($1,aliases,","); if (aliases[1] !~ /^\[/) print aliases[1]}‘ ~/.ssh/known_hosts ; cat ~/.ssh/config | grep "^Host " | awk ‘{print $2}‘ ` COMPREPLY=( $(compgen -W "${comp_ssh_hosts}" -- $cur)) return 0 } complete -F _complete_ssh_hosts ssh complete -F _complete_ssh_hosts scp # 配置历史记录 size HISTSIZE=1000 HISTFILESIZE=2000
本文出自 “the-way-to-cloud” 博客,请务必保留此出处http://iceyao.blog.51cto.com/9426658/1872865
mac补全环境配置
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。