软著中写源代码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" >>
echo "$1/$file2" >>
echo "\n" >>
cat "$1/$file2" >>
fi
fi
done
}
list_alldir ./Pcloud
list_alldir就是列出⽂件⽬录下所有包含后缀.cpp,.h和.pro的⽂件。并把他们的内容写⼊到中,最后只需要统计的总⾏数即可,把代码贴到⽂档中即可。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论