在github中clone了nanomsghttps://github.com/davidmpc/nanomsg.git的源代码,发现代码是google风格,即for、if后大括号没有另起一行,十分不习惯,因此需要改变代码格式。
参考http://blog.csdn.net/i_am_tom/article/details/54375266,在sourceforgehttps://sourceforge.net/projects/astyle/?source=typ_redirect中下载了macos的Astyle的代码,进入build文件夹。
p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Courier; color: #00a3af; background-color: #dfdbc3 }
p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Courier; color: #4d2f2d; background-color: #dfdbc3; min-height: 22.0px }
p.p3 { margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Courier; color: #4d2f2d; background-color: #dfdbc3 }
span.s1 { color: #00a400 }
span.s2 { color: #4d2f2d }
span.s3 { }
span.s4 { color: #b12513 }
span.s5 { color: #00a3af }
[email protected]:~/software/astyle$ls
LICENSE.md README.md build doc file src
直接make,在bin中有Astyle的可执行文件。
执行如下命令,既可以让大括号另起一行、switch中case前有一个tab、对文件夹下所有的.c迭代格式化。
p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 18.0px Courier; color: #4d2f2d; background-color: #dfdbc3 }
span.s1 { color: #00a400 }
span.s2 { }
span.s3 { color: #00a3af }
[email protected]:~/software/astyle/build/mac/bin$./AStyle --style=allman --indent-switches --recursive ../../../../../Documents/code/nanomsg/nanomsg/src/*.c