大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
手动修改——当我没说……
成都创新互联公司网站设计,为客户量身定制各类网站建设业务,包括企业型、电子商务型、响应式网站设计、行业门户型等各类网站,实战经验丰富,成功案例众多。以客户利益为出发点,成都创新互联公司网站制作为客户规划、按需定制设计符合企业需求、带有营销价值的网络建站方案认真对待每一个客户,我们不用口头的语言来吹擂我们的优秀,成百上千家的成功案例见证着我们的成长。用脚本去解决,之前我用perl写过这样功能的脚本,但是时间久远,我已经找不到了。
简单分析一下,大概是一下几步
以上就简单处理了大部分的情况,就此打住,脚本么,简简单单的处理个七七八八就可以了。能处理的就要处理对,不能处理的就记录下来。
根据以往的经验,在一个大而复杂的系统里面,这样的结果可能会出现找到多个的很多,这样就会很麻烦,但也没办法。
一下是shell脚本,经测试,能工作。
#!/bin/bash
workdir=.
modify=0while [ $# -gt 0 ]
do case $1 in "--modify")
modify=1
;;
"--work-dir")
shift
workdir=$1
;;
*)
echo "USAGE: $0 [--work-dir ] [--modify] [--help]"
exit1 esac shiftdoneecho "work-dir: $workdir, modify: $modify"
h_files=$(tempfile)
none_files=files_none
ok_files=files_one
more_files=files_more
>$none_files
>$ok_files
>$more_files
all_find=$(tempfile)
deal_files=$(tempfile)
grep -Prsh '^s*#s*include' $workdir | grep -Po 'w+.h' | sort | uniq | while read hfile
do echo -n .
if [ $(find $workdir -name "$hfile" | wc -l) -eq 0 ]
then find $workdir -iname "$hfile" > $all_find
cat $all_find | grep -Po 'w+.h$' | sort | uniq > $h_files
file_cnt=$(cat $h_files | wc -l)
if [ $file_cnt -eq 0 ]
then echo $hfile >> $none_files
elif [ $file_cnt -eq 1 ]
then
newfile=$(cat $h_files)
echo $hfile '->' $newfile >> $ok_files
cat $all_find >> $ok_files
#for ok, deal it
if [ $modify -eq 1 ]
then grep -Prsn "^s*#s*include.*$hfile" $workdir > $deal_files
if [ $(cat $deal_files | wc -l) -gt 0 ]
then cat $deal_files | awk -F: '{print $1}' | xargs perl -i -pe "s/$hfile/$newfile/" echo modified: >> $ok_files
cat $deal_files >> $ok_files
fi fi else echo -- $hfile -- >> $more_files
cat $all_find >> $more_files
fi fidoneecho Done!
echo the result in file: $none_files, $ok_files and $more_files