每次我都会重新寻找这个命令的写法。下面就是如何使用sed往一个文件顶部添加一行的方法:
sed -i '1s/^/line to insert\n/' path/to/file/you/want/to/change.txt
这种方法非常简单,很多人都知道,下面就是如何用命令行将(>>)多行文本插入一个文件中。这里使用的是“here document”语法,它能让你通过块文本符号来将段落插入文件中,通常用的符合是EOF(意思是 “End Of File”):
cat >> path/to/file/to/append-to.txt << "EOF"export PATH=$HOME/jdk1.8.0_31/bin:$PATHexport JAVA_HOME=$HOME/jdk1.8.0_31/EOF
两个”EOF“之间的所有内容都会被添加到文件中。
如果你使用Eclipse,ItelliJ或其它IDE,这些工具的强大重构能力也许会让你轻松实现很多事情。但我估计很多时候你的开发环境中没有这样的集成工具。
如何使用命令行对一个目录进行递归搜索和替换?别想Perl语言,你可以使用find and sed。感谢Stack Overflow提供的指导:
# OSX versionfind . -type f -name '*.txt' -exec sed -i '' s/this/that/g {} +
使用了一段时间后,我总结写出了一个函数,添加入了 .bashrc ,就像下面这样:
function sr { find . -type f -exec sed -i '' s/$1/$2/g {} +}
你可以像这样使用它:
sr wrong_word correct_word
我过去喜欢用Emacs里的scratch facility功能。也经常用Vim快速创建临时文件。下面这两个函数是使用openssl生成随机的字符串作为文件名:
function sc { gvim ~/Dropbox/$(openssl rand -base64 10 | tr -dc 'a-zA-Z').txt} function scratch { gvim ~/Dropbox/$(openssl rand -base64 10 | tr -dc 'a-zA-Z').txt}
在命令行窗口输入sc或scratch,一个新的gvim或macvim窗口就会弹出来,里面会加载一个随机文件名的临时文件。
下载一个页面输出到终端,跟随链接转向,忽略安全异常:
curl -Lks <some-url>
下载一个链接,跟随链接转向,忽略安全异常:
curl -OLks <some-url/to/a/file.tar.gz>
这里用了很多参数,你可以阅读这个简单的curl文档来了解它们。
你还没有在.bashrc里使用bashmarks吗?还在等待什么?它真的非常有用。它能帮你保持历史操作,跳回到你经常使用的目录。下面是我的配置文件里脚本,但我想上面的链接能提供你更多技巧:
# 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 bookmarkstouch ~/.sdirsfunction s { cat ~/.sdirs | grep -v "export DIR_$1=" > ~/.sdirs1 mv ~/.sdirs1 ~/.sdirs echo "export DIR_$1=$PWD" >> ~/.sdirs} # jump to bookmarkfunction g { source ~/.sdirs cd $(eval $(echo echo $(echo \$DIR_$1)))} # list bookmarks with dirnamfunction l { source ~/.sdirs env | grep "^DIR_" | cut -c5- | grep "^.*="}# list bookmarks without dirnamefunction _l { source ~/.sdirs env | grep "^DIR_" | cut -c5- | grep "^.*=" | cut -f1 -d "="} # completion command for gfunction _gcomp { local curw COMPREPLY=() curw=${COMP_WORDS[COMP_CWORD]} COMPREPLY=($(compgen -W '`_l`' -- $curw)) return 0} # bind completion command for g to _gcompcomplete -F _gcomp g