提高Linux工作效率的bash技巧

看的这篇文章 备份地址,感觉有效果的是下面几个。

帮你保持历史操作,跳回到你经常使用的目录。

下面是我的配置文件里脚本:

# USAGE:
# s bookmarkname - saves the curr dir as bookmarkname
# g bookmarkname - jumps to the that bookmark
# g b[TAB] - tab completion is available
# l - list all bookmarks

# save current directory to bookmarks
touch ~/.sdirs
function s {
  cat ~/.sdirs | grep -v "export DIR_$1=" > ~/.sdirs1
  mv ~/.sdirs1 ~/.sdirs
  echo "export DIR_$1=$PWD" >> ~/.sdirs
}

# jump to bookmark
function g {
  source ~/.sdirs
  cd $(eval $(echo echo $(echo \$DIR_$1)))
}

# list bookmarks with dirnam
function l {
  source ~/.sdirs
  env | grep "^DIR_" | cut -c5- | grep "^.*="
}
# list bookmarks without dirname
function _l {
  source ~/.sdirs
  env | grep "^DIR_" | cut -c5- | grep "^.*=" | cut -f1 -d "="
}

# completion command for g
function _gcomp {
    local curw
    COMPREPLY=()
    curw=${COMP_WORDS[COMP_CWORD]}
    COMPREPLY=($(compgen -W '`_l`' -- $curw))
    return 0
}

# bind completion command for g to _gcomp
complete -F _gcomp g

创建自己的命令包.

通过脚本,我可以将ssh key拷贝到任何网站服务器——只需要键入dur keyuser@somehost.

function dur {
  case $1 in
  clone|cl)
    git clone [email protected]:nicolapaolucci/$2.git
    ;;
  move|mv)
    git remote add bitbucket [email protected]:nicolapaolucci/$(basename $(pwd)).git
    git push --all bitbucket
    ;;
  trackall|tr)
    #track all remote branches of a project
    for remote in $(git branch -r | grep -v master ); do git checkout --track $remote ; done
    ;;
  key|k)
    #track all remote branches of a project
    ssh $2 'mkdir -p .ssh && cat >> .ssh/authorized_keys' < ~/.ssh/id_rsa.pub
    ;;
  fun|f)
    #list all custom bash functions defined
    typeset -F | col 3 | grep -v _ | xargs | fold -sw 60
    ;;
  def|d)
    #show definition of function $1
    typeset -f $2
    ;;
  help|h|*)
    echo "[dur]dn shell automation tools"
    echo "commands available:"
    echo " [cl]one, [mv|move]"
    echo " [f]fun lists all bash functions defined in .bashrc"
    echo " [def]  lists definition of function defined in .bashrc"
    echo " [k]ey  copies ssh key to target host"
    echo " [tr]ackall], [h]elp"
    ;;
  esac
}

## 1.快速跳转命令 一 z

要是每次都要进入一个目录很深的文件夹下,像下面这样:

# cd /root/py/auto/fabric

每次都要输入好多个目录名是不是很烦躁,下面有一个非常方便的操作可以取代它 一 z 命令

[图片上传失败...(image-d45daf-1529634654215)]

z 的源码在这里:https://github.com/rupa/z/blob/master/z.sh

你只需要把源码复制到用户目录下的 z.sh 文件,然后在 .bashrc 这个文件的最后添加 “source /path/to/z.sh”,最后使用:

# source z.sh 

或者

# . .bashrc

就可以生效了,要跳转到一个目录,直接使用 z + 目录名(此目录必须是以前进入过的)。

z 这个脚本会为你每次进入的目录分配一个权重,然后根据权重调到你所输入的目录中。

[图片上传失败...(image-bef7f2-1529634654215)]

作者:田飞雨
链接:https://www.jianshu.com/p/a6bc23bb1f15
來源:
著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

你可能感兴趣的:(提高Linux工作效率的bash技巧)