当前位置: > Linux编程 >

十个提升生产力的 bash 技巧

时间:2015-03-05 14:17来源:linux.it.net.cn 作者:IT

我喜欢钻研bash环境。很多时候,在使用bash编程中,有些问题一遍又一遍的重复遇到。每次我都需要重新思考这些问题的解决方法。直到有一天我无法忍受,于是坐下来,编写一个通用的函数,放入我的.bashrc文件中,部署到电脑上。

希望我的这些追求最大化命令行效率的努力成果也能给其他喜欢使用bash的朋友们带来一些帮助。我更大的期望是我的这种行为能引起其他朋友的互动——给我提建议、提出更好的bash技巧。

别的不多说了,下面就是我的总结。

技巧一、用命令行往文件的顶部添加文字

每次我都会重新寻找这个命令的写法。下面就是如何使用sed往一个文件顶部添加一行的方法:


  1. sed -i '1s/^/line to insert\n/' path/to/file/you/want/to/change.txt

技巧二、用命令行往配置文件里插入多行文本

这种方法非常简单,很多人都知道,下面就是如何用命令行将(>>)多行文本插入一个文件中。这里使用的是“here document”语法,它能让你通过块文本符号来将段落插入文件中,通常用的符合是EOF(意思是 “End Of File”):


  1. cat >> path/to/file/to/append-to.txt << "EOF"
  2. export PATH=$HOME/jdk1.8.0_31/bin:$PATH
  3. export JAVA_HOME=$HOME/jdk1.8.0_31/
  4. EOF

两个”EOF“之间的所有内容都会被添加到文件中。

技巧三、用命令行递归方式全局搜索目录文件和替换

如果你使用Eclipse,ItelliJ或其它IDE,这些工具的强大重构能力也许会让你轻松实现很多事情。但我估计很多时候你的开发环境中没有这样的集成工具。

如何使用命令行对一个目录进行递归搜索和替换?别想Perl语言,你可以使用find and sed。感谢Stack Overflow提供的指导:


  1. # OSX version
  2. find . -type f -name '*.txt' -exec sed -i '' s/this/that/g {} +

使用了一段时间后,我总结写出了一个函数,添加入了 .bashrc ,就像下面这样:


  1. function sr {
  2. find . -type f -exec sed -i '' s/$1/$2/g {} +
  3. }

你可以像这样使用它:


  1. sr wrong_word correct_word

技巧四、用命令行在vim和Dropbox里开启一个临时文件

我过去喜欢用Emacs里的scratch facility功能。也经常用Vim快速创建临时文件。下面这两个函数是使用openssl生成随机的字符串作为文件名:


  1. function sc {
  2. gvim ~/Dropbox/$(openssl rand -base64 10 | tr -dc 'a-zA-Z').txt
  3. }
  4.  
  5. function scratch {
  6. gvim ~/Dropbox/$(openssl rand -base64 10 | tr -dc 'a-zA-Z').txt
  7. }

在命令行窗口输入sc或scratch,一个新的gvim或macvim窗口就会弹出来,里面会加载一个随机文件名的临时文件。

技巧五、用命令行下载文件,支持链接转向、HTTPS和安全加密等情况

下载一个页面输出到终端,跟随链接转向,忽略安全异常:


  1. curl -Lks <some-url>

下载一个链接,跟随链接转向,忽略安全异常:


  1. curl -OLks <some-url/to/a/file.tar.gz>

这里用了很多参数,你可以阅读这个简单的curl文档来了解它们。

技巧六、Bashmarks

你还没有在.bashrc里使用bashmarks吗?还在等待什么?它真的非常有用。它能帮你保持历史操作,跳回到你经常使用的目录。下面是我的配置文件里脚本,但我想上面的链接能提供你更多技巧:


  1. # USAGE:
  2. # s bookmarkname - saves the curr dir as bookmarkname
  3. # g bookmarkname - jumps to the that bookmark
  4. # g b[TAB] - tab completion is available
  5. # l - list all bookmarks
  6.  
  7. # save current directory to bookmarks
  8. touch ~/.sdirs
  9. function s {
  10. cat ~/.sdirs | grep -v "export DIR_$1=" > ~/.sdirs1
  11. mv ~/.sdirs1 ~/.sdirs
  12. echo "export DIR_$1=$PWD" >> ~/.sdirs
  13. }
  14.  
  15. # jump to bookmark
  16. function g {
  17. source ~/.sdirs
  18. cd $(eval $(echo echo $(echo \$DIR_$1)))
  19. }
  20.  
  21. # list bookmarks with dirnam
  22. function l {
  23. source ~/.sdirs
  24. env | grep "^DIR_" | cut -c5- | grep "^.*="
  25. }
  26. # list bookmarks without dirname
  27. function _l {
  28. source ~/.sdirs
  29. env | grep "^DIR_" | cut -c5- | grep "^.*=" | cut -f1 -d "="
  30. }
  31.  
  32. # completion command for g
  33. function _gcomp {
  34. local curw
  35. COMPREPLY=()
  36. curw=${COMP_WORDS[COMP_CWORD]}
  37. COMPREPLY=($(compgen -W '`_l`' -- $curw))
  38. return 0
  39. }
  40.  
  41. # bind completion command for g to _gcomp
  42. complete -F _gcomp g

技巧七、从格式化输出里提取一列(我最常使用的awk技巧)

我几乎天天都会使用它。真的。经常会有一些输出,我只需要其中的第二列,或第三列,下面这个命令就能做到这些:


  1. #Sample output of git status -s command:
  2.  
  3. $ git status -s
  4.  
  5. M .bashrc
  6. ?? .vim/bundle/extempore/
  7.  
  8. # Remove status code from git status and just get the file names
  9. $ git status -s | awk '{print $2}'
  10.  
  11. .bashrc
  12. .vim/bundle/extempore/

为什么不写个函数,让我们随时都可以用呢?


  1. function col {
  2. awk -v col=$1 '{print $col}'
  3. }

这使得提取列非常容易,比如,你不想要第一列?简单:


  1. $ git status -s | col 2
  2.  
  3. .bashrc
  4. .vim/bundle/extempore/

技巧八、忽略头x个词

我对xargs很着迷,我感觉它就像一把快刀。但有时候用它获得的结果需要调整一下,也许需要取得一些值。例如,你想去掉下面文件影像里的一些信息:


  1. function skip {
  2. n=$(($1 + 1))
  3. cut -d' ' -f$n-
  4. }

下面是如何使用它:

  • 使用 docker images 得到下面的输出:

  1. $ docker images
  2.  
  3. REPOSITORY TAG IMAGE ID CREATED VIRTUAL SIZE
  4. <none> <none> 65a9e3ef7171 3 weeks ago 1.592 GB
  5. <none> <none> 7c01ca6c30f2 3 weeks ago 11.1 MB
  6. <none> <none> 9518620e6a0e 3 weeks ago 7.426 MB
  7. <none> <none> 430707ee7fe8 3 weeks ago 7.426 MB
  8. boot2docker/boot2docker latest 1dbd7ebffe31 3 weeks ago 1.592 GB
  9. spaceghost/tinycore-x86_64 5.4 f47686df00df 7 weeks ago 11.1 MB
  10. durdn/bithub latest df1e39df8dbf 8 weeks ago 100.9 MB
  11. <none> <none> c5e6cf38d985 8 weeks ago 100.9 MB
  12. nginx latest e426f6ef897e 12 weeks ago 100.2 MB
  13. zoobab/tinycore-x64 latest 8cdd417ec611 8 months ago 7.426 MB
  14. scratch latest 511136ea3c5a 20 months ago 0 B
  • 使用上面的函数,你可以获取所有的IDs:

  1. $ docker images | col 3
  2.  
  3. <span class="type">IMAGE
  4. 65a9e3ef7171
  5. 7c01ca6c30f2
  6. 9518620e6a0e
  7. 430707ee7fe8
  8. 1dbd7ebffe31
  9. f47686df00df
  10. df1e39df8dbf
  11. c5e6cf38d985
  12. e426f6ef897e
  13. 8cdd417ec611
  14. 511136ea3c5a</span>
  • 进一步处理:

  1. docker images | col 3 | xargs
  2.  
  3. IMAGE 65a9e3ef7171 7c01ca6c30f2 9518620e6a0e 430707ee7fe8 1dbd7ebffe31 f47686df00df df1e39df8dbf c5e6cf38d985 e426f6ef897e 8cdd417ec611 511136ea3c5a
  • 但前面的”IMAGE”字符我也想去掉:

  1. docker images | col 3 | xargs | skip 1
  2.  
  3. 65a9e3ef7171 7c01ca6c30f2 9518620e6a0e 430707ee7fe8 1dbd7ebffe31 f47686df00df df1e39df8dbf c5e6cf38d985 e426f6ef897e 8cdd417ec611 511136ea3c5a
  • 完整的写下来就是这样:

  1. docker rmi $(docker images | col 3 | xargs | skip 1)

技巧九、创建自己的命令包

在bash里,你可以很容易的创建自己的命令组件,你可以看一下下面我写的:


  1. function dur {
  2. case $1 in
  3. clone|cl)
  4. git clone git@bitbucket.org:nicolapaolucci/$2.git
  5. ;;
  6. move|mv)
  7. git remote add bitbucket git@bitbucket.org:nicolapaolucci/$(basename $(pwd)).git
  8. git push --all bitbucket
  9. ;;
  10. trackall|tr)
  11. #track all remote branches of a project
  12. for remote in $(git branch -r | grep -v master ); do git checkout --track $remote ; done
  13. ;;
  14. key|k)
  15. #track all remote branches of a project
  16. ssh $2 'mkdir -p .ssh && cat >> .ssh/authorized_keys' < ~/.ssh/id_rsa.pub
  17. ;;
  18. fun|f)
  19. #list all custom bash functions defined
  20. typeset -F | col 3 | grep -v _ | xargs | fold -sw 60
  21. ;;
  22. def|d)
  23. #show definition of function $1
  24. typeset -f $2
  25. ;;
  26. help|h|*)
  27. echo "[dur]dn shell automation tools"
  28. echo "commands available:"
  29. echo " [cl]one, [mv|move]"
  30. echo " [f]fun lists all bash functions defined in .bashrc"
  31. echo " [def] <fun> lists definition of function defined in .bashrc"
  32. echo " [k]ey <host> copies ssh key to target host"
  33. echo " [tr]ackall], [h]elp"
  34. ;;
  35. esac
  36. }

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

总结

你可以试一下我的这个.bashrc文件,或你自己也可以写一个。你有更好更多的技巧吗?请写在下面的评论里。


原文:https://developer.atlassian.com/blog/2015/02/ten-tips-for-wonderful-bash-productivity/    作者: Nicola Paolucci
译文:http://www.techug.com/ten-tips-for-wonderful-bash-productivity



(责任编辑:IT)
------分隔线----------------------------