软著中写源代码60页快速实现方法

我们在写软著的时候,其中包含要写60页的源代码,包含前30页,后30页,代码帖的太麻烦,可以直接用脚本实现。而且可以快速统计代码行数,下面就用shell脚本实现一下。


#!/bin/bash 
list_alldir(){
for file2 in `ls -A $1`
do
if [ -d "$1/$file2" ];then
#echo "$1/$file2"
list_alldir "$1/$file2"
elif [ -f  "$1/$file2" ];then

	if [[ "$1/$file2" == *.cpp ]] || [[ "$1/$file2" == *.h ]] || [[ "$1/$file2" == *.pro ]];then
	

	echo "\n" >> out.txt
	echo "$1/$file2" >> out.txt
	echo "\n" >> out.txt
	cat "$1/$file2" >> out.txt
	fi
fi
    done
}
list_alldir ./Pcloud

list_alldir就是列出文件目录下所有包含后缀.cpp,.h和.pro的文件。并把他们的内容写入到out.txt中,最后只需要统计out.txt的总行数即可,把代码贴到文档中即可。


你可能感兴趣的:(软著中写源代码60页快速实现方法)