-
Notifications
You must be signed in to change notification settings - Fork 0
/
pattern_replace.sh
649 lines (565 loc) · 16.2 KB
/
pattern_replace.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
#!/bin/bash
#******************************************************************************************
#
# pattern_replace.sh
#
# Version: 1.30
#
# Script que permite reemplazar un patron de texto determinado dentro de varios archivos de texto.
# Desarrollado por: Damian Andres Ulanowicz
#
# Modo de uso:
# sh ./pattern_replace.sh -e -i [-o] -s -d [-r] [-h]
#
# -e|--extension Extensiones de los archivos a procesar, separados por coma.
# -i|--inputpath Ruta de archivos a procesar.
# [-o|--outputpath] Ruta de archivos procesados. Default: ./Output
# -s|--srcpattern Archivo con lineas de texto a buscar en los archivos fuente.
# -d|--dstpattern Archivo con lineas de texto a reemplazar en los archivos fuente.
# Cada linea en srcpattern sera reemplazada por la correspondiente
# linea de dstpattern en los archivos fuente.
# [-r|--recursive] Opcion de recursividad, (para procesar archivos en los subdirectorios).
# [-h|--help] Ayuda.
#
# Ejemplo: sh ./pattern_replace.sh -e htm,xml,html,php,cgi,pl -i ./Input -o ./Output -s ./Pattern_replace/pattern_src.txt -d ./Pattern_replace/pattern_dst.txt -r
#
#******************************************************************************************
PATTERN_PATH=./Pattern_replace/
PATTERN_EXT=*.*
#INPUT_PATH=./Input/
#INPUT_EXT=*.*
OUTPUT_PATH=./Output/
UP_PATH=.
LOG_PATH=/Log/
LOG_FILE=pattern_replace.log
TMP1_EXT=.tmp1
TMP2_EXT=.tmp2
MAX_SED_STR=2000 # Longitud maxima de string a procesar por el comando sed.
# Este parametro es variable, y depende de la version, y del ABI.
fg_error=0
fg_rollback=0
fg_critical=0
pattern_cnt=0
recursive=0
process_cnt=0
error_cnt=0
home_path=$(pwd)
log_file=$home_path$LOG_PATH$LOG_FILE
unset pattern_list
unset ext_list
unset src_list
unset dst_list
unset sed_cat_list
rollback()
{
if [ $fg_rollback -eq 0 ]
then
fg_rollback=1
if [ $fg_critical -eq 1 ]
then
log_str=$(printf "[*] Proceso interrumpido: Rollback...\n")
echo_log "$log_str" "$log_file" 1 1
if [ -f "$input_file$TMP1_EXT" ]
then
rm -f $input_file$TMP1_EXT 2>/dev/null
fi
if [ -f "$input_file$TMP2_EXT" ]
then
rm -f $input_file$TMP2_EXT 2>/dev/null
fi
else
log_str=$(printf "[*] Proceso interrumpido.\n")
echo_log "$log_str" "$log_file" 1 1
fi
cd $home_path
end_log
fi
exit
}
read_src()
{
local src_file=$1
local line=""
src_cnt=0
while IFS= read -r line
do
src_list[${src_cnt}]=$(printf '%s\n' "$line")
src_cnt=$((src_cnt+1))
done <"$src_file"
}
read_dst()
{
local dst_file=$1
local line=""
dst_cnt=0
while IFS= read -r line
do
dst_list[${dst_cnt}]=$(printf '%s\n' "$line")
dst_cnt=$((dst_cnt+1))
if [ $dst_cnt -eq $src_cnt ]
then
break
fi
done <"$dst_file"
}
load_pattern()
{
for pattern_file in $PATTERN_PATH$PATTERN_EXT
do
if [ -f "$pattern_file" ]
then
pattern=$(cat $pattern_file)
pattern_list[${pattern_cnt}]=$pattern
pattern_cnt=$((pattern_cnt+1))
fi
done
}
load_ext()
{
local aux1=$1
ext_len=${#aux1}
ext_cnt=0
end=1
while [ "$end" -gt 0 ]
do
end=`expr index "$aux1" ,`
if [ "$end" -gt 0 ]
then
aux2=${aux1:0:end-1}
aux1=${aux1:end:ext_len-end}
else
aux2=${aux1:0:ext_len-end}
fi
ext_list[${ext_cnt}]=$aux2
ext_cnt=$((ext_cnt+1))
done
}
verify_ext()
{
local file_name=$1
ret=$2
ret=0
file_ext=$(echo $file_name | awk -F "." '{print $NF}')
for ((i=0; i<$ext_cnt; i++)); do
ext=${ext_list[${i}]}
if [ "$file_ext" = "$ext" ]
then
ret=1
break
fi
done
return $ret
}
build_sed_cat()
{
local aux=""
pass_count=$1
pass_count=0
fg_cat=0
delim=$(printf '\001')
for ((i=0; i<$src_cnt; i++)); do
src_pattern=${src_list[${i}]}
if [[ ! $src_pattern = "" ]]
then
if [ $i -lt $dst_cnt ]
then
dst_pattern=${dst_list[${i}]}
else
dst_pattern=""
fi
if [[ $fg_cat -eq 0 ]]
then
str_cat="s"
else
str_cat=$str_cat";s"
fi
fg_cat=1
str_cat=$str_cat$delim$src_pattern$delim$dst_pattern$delim"g"
str_len=${#str_cat}
if [[ "$str_len" -gt "$MAX_SED_STR" ]]
then
rev_pos=$(echo $str_cat|awk '{for(i=length;i!=0;i--)x=x substr($0,i,1);}END{str=";s'$delim'";pos=index(x,str);print pos;}')
pos=$((str_len-rev_pos))
if [[ "$pos" -lt 5 ]]
then
echo "[-] Error: El string #:$i a reemplazar no puede exceder "$(($MAX_SED_STR-5))" bytes."
exit 2
fi
fg_cat=0
aux=$str_cat
str_cat=${str_cat:0:pos}
sed_cat_list[${pass_count}]=$str_cat
pass_count=$((pass_count+1))
str_cat=${aux:pos+3:str_len-1}
fi
fi
done
str_len=${#str_cat}
if [[ "$str_len" -gt 0 ]]
then
sed_cat_list[${pass_count}]=$str_cat
pass_count=$((pass_count+1))
fi
return $pass_count
}
process_files()
{
local current_path=$1
local mask="/*"
log_str="[+] Directorio actual: $current_path"
echo_log "$log_str" "$log_file" 1 1
for input_file in $current_path$mask
do
fg_error=0
if [ ! -d "$input_file" ]
then
if [ -f "$input_file" ]
then
fg_critical=1
cp -f $input_file $input_file$TMP1_EXT
verify_ext $input_file $valid
valid=$?
if [ $valid -eq 1 ];
then
log_str=$(printf "[*] Procesando: %s\n" "$input_file")
echo_log "$log_str" "$log_file" 1 1
for ((i=0; i<$src_cnt; i++)); do
src_pattern=${src_list[${i}]}
if [[ ! $src_pattern = "" ]]
then
if [ $i -lt $dst_cnt ]
then
dst_pattern=${dst_list[${i}]}
else
dst_pattern=""
fi
if [[ $i -eq 0 ]]
then
str_cat="s"
else
str_cat=$str_cat";s"
fi
str_cat=$str_cat$delim$src_pattern$delim$dst_pattern$delim"g"
if ! sed -e $str_cat "$input_file""$TMP1_EXT" > "$input_file""$TMP2_EXT"
then
log_str=$(printf "[-] Error al correr el comando sed en el archivo: %s\n" "$input_file") 1>&2
echo_log "$log_str" "$log_file" 1 1
fg_error=1
else
if ! mv -f $input_file$TMP2_EXT $input_file$TMP1_EXT 2>/dev/null
then
log_str=$(printf "[-] Error al mover el archivo: %s\n" "$input_file""$TMP2_EXT") 1>&2
echo_log "$log_str" "$log_file" 1 1
fg_error=1
fi
fi
fi
done
fi
fg_critical=0
if [ $fg_error -eq 0 ]
then
if ! mv -f $input_file$TMP1_EXT $OUTPUT_PATH$input_file 1>&2
then
log_str=$(printf "[-] Error al mover el archivo: %s\n" "$input_file""$TMP1_EXT") 1>&2
echo_log "$log_str" "$log_file" 1 1
rm -f $input_file$TMP1_EXT 2>/dev/null
error_cnt=$((error_cnt+1))
else
if [ $valid -eq 1 ];
then
log_str=$(printf "[+] OK\n")
echo_log "$log_str" "$log_file" 1 1
process_cnt=$((process_cnt+1))
fi
fi
else
rm -f $input_file$TMP1_EXT 2>/dev/null
rm -f $input_file$TMP2_EXT 2>/dev/null
error_cnt=$((error_cnt+1))
fi
fi
else
if [ $recursive -eq 1 ]
then
mkdir $OUTPUT_PATH$input_file 2>/dev/null
if [ ! -d "$OUTPUT_PATH$input_file" ]
then
log_str=$(printf "[-] Error: No se pudo crear directorio: %s\n" "$OUTPUT_PATH$input_file") 1>&2
echo_log "$log_str" "$log_file" 1 1
error_cnt=$((error_cnt+1))
else
process_files $input_file
fi
fi
fi
done
}
show_banner()
{
echo
echo "********************************************************"
echo "* *"
echo "* pattern_replace.sh *"
echo "* Version 1.30 *"
echo "* *"
echo "* Desarrollado por: Damian Andres Ulanowicz *"
echo "* *"
echo "********************************************************"
echo
}
ayuda()
{
echo
echo "Ayuda:"
echo
echo "sh ./pattern_replace.sh -e -i [-o] -s -d [-r] [-h]"
echo
echo "-e|--extension Extensiones de los archivos a procesar, separados por coma."
echo "-i|--inputpath Ruta de archivos a procesar."
echo "[-o|--outputpath] Ruta de archivos procesados. Default: ./Output"
echo "-s|--srcpattern Archivo con lineas de texto a buscar en los archivos fuente."
echo "-d|--dstpattern Archivo con lineas de texto a reemplazar en los archivos fuente."
echo " Cada linea en srcpattern sera reemplazada por la correspondiente "
echo " linea de dstpattern en los archivos fuente."
echo "[-r|--recursive] Opcion de recursividad, (para procesar archivos en los subdirectorios)."
echo "[-h|--help] Ayuda."
echo
echo "Ejemplo: sh ./pattern_replace.sh -e htm,xml,html,php,cgi,pl -i ./Input -o ./Output -s ./Pattern_replace/pattern_src.txt -d ./Pattern_replace/pattern_dst.txt -r"
echo
}
echo_log()
{
local str=$1
local f_name=$2
local fg_newline=$3
local fg_stdout=$4
if [ $fg_newline -eq 1 ]
then
printf "%s\n" "$str" >>$f_name
if [ $fg_stdout -eq 1 ]
then
printf "%s\n" "$str"
fi
else
printf "%s" "$str" >>$f_name
if [ $fg_stdout -eq 1 ]
then
printf "%s" "$str"
fi
fi
}
init_log()
{
mkdir $home_path$LOG_PATH 2>/dev/null
log_str=""
echo_log "$log_str" "$log_file" 1 0
log_str="************************************************************"
echo_log "$log_str" "$log_file" 1 0
log_str="//////////////////// pattern_replace.sh ////////////////////"
echo_log "$log_str" "$log_file" 1 0
log_str="//////////////////// Version 1.30 ////////////////////"
echo_log "$log_str" "$log_file" 1 0
log_str="------------------------------------------------------------"
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " Inicio: %s" "$(date)")
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " User : %s" "$USERNAME")
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " Host : %s" "$HOSTNAME")
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " Bash : %s" "$BASH_VERSION")
echo_log "$log_str" "$log_file" 1 0
log_str="------------------------------------------------------------"
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " --extension : %s" "$ext_arg")
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " --inputpath : %s" "$INPUT_PATH")
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " --outputpath : %s" "$OUTPUT_PATH")
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " --srcpattern : %s" "$src_pattern")
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " --dstpattern : %s" "$dst_pattern")
echo_log "$log_str" "$log_file" 1 0
if [ $recursive -eq 1 ]
then
aux_str="Si"
else
aux_str="No"
fi
log_str=$(printf " --recursive : %s" "$aux_str")
echo_log "$log_str" "$log_file" 1 0
log_str="------------------------------------------------------------"
echo_log "$log_str" "$log_file" 1 0
}
end_log()
{
log_str="------------------------------------------------------------"
echo_log "$log_str" "$log_file" 1 0
log_str=$(printf " Fin: %s" "$(date)")
echo_log "$log_str" "$log_file" 1 0
log_str="------------------------------------------------------------"
echo_log "$log_str" "$log_file" 1 0
log_str="************************************************************"
echo_log "$log_str" "$log_file" 1 0
}
read_args()
{
numargs=$#
if [ $numargs -lt 1 ];
then
echo "[-] Error: Parametros incorrectos"
ayuda
exit 2
fi
fg_extension=0
fg_srcpattern=0
fg_dstpattern=0
fg_inputpath=0
for ((i=1 ; i <= $numargs ; i++))
do
key="$1"
case $key in
-e|--extension)
ext_arg="$2"
fg_extension=1
shift
;;
-i|--inputpath)
INPUT_PATH="$2"
fg_inputpath=1
shift
;;
-o|--outputpath)
OUTPUT_PATH="$2"
shift
;;
-s|--srcpattern)
src_pattern="$2"
fg_srcpattern=1
shift
;;
-d|--dstpattern)
dst_pattern="$2"
fg_dstpattern=1
shift
;;
-r|--recursive)
recursive=1
shift
;;
-h|--help)
ayuda
exit 1
;;
*) # Opcion desconocida, avanzar...
shift
;;
esac
done
if [ $fg_extension -eq 0 -o $fg_srcpattern -eq 0 -o $fg_dstpattern -eq 0 -o $fg_inputpath -eq 0 ]
then
ayuda
exit 2
fi
}
valid_args()
{
if [[ "$ext_arg" = *"/"* ]]
then
echo "[-] Error en parametro -e|--extension."
ayuda
exit 2
fi
if [[ "$ext_arg" = *"-"* ]]
then
echo "[-] Error en parametro -e|--extension."
ayuda
exit 2
fi
if [ ! -f "$src_pattern" ]
then
echo "[-] Error: archivo srcpattern no existe."
ayuda
exit 2
fi
if [ ! -f "$dst_pattern" ]
then
echo "[-] Error: archivo dstpattern no existe."
ayuda
exit 2
fi
fin="${INPUT_PATH: -1}"
if [[ ! "$fin" = "/" ]]
then
INPUT_PATH="$INPUT_PATH""/"
fi
# Se omite "~" porque es reemplazado por $(pwd)
if [[ ${INPUT_PATH:0:1} != "/" ]]
then
INPUT_PATH=$home_path"/"$INPUT_PATH
fi
if [ ! -d "$INPUT_PATH" ]
then
echo "[-] Error: Ruta input no existe."
ayuda
exit 2
fi
fin="${OUTPUT_PATH: -1}"
if [[ ! "$fin" = "/" ]]
then
OUTPUT_PATH="$OUTPUT_PATH""/"
fi
# Se omite "~" porque es reemplazado por $(pwd)
if [[ ${OUTPUT_PATH:0:1} != "/" ]]
then
OUTPUT_PATH=$home_path"/"$OUTPUT_PATH
fi
mkdir $OUTPUT_PATH 2>/dev/null # Intenta crear directorio por si no existe, tomando el default.
if [ ! -d "$OUTPUT_PATH" ]
then
echo "[-] Error: Ruta output no existe."
ayuda
exit 2
fi
}
trap rollback INT TERM
show_banner
read_args $1 $2 $3 $4 $5 $6 $7 $8 $9 ${10} ${11} ${12} ${13} ${14} ${15}
valid_args
init_log
read_src $src_pattern
read_dst $dst_pattern
load_ext $ext_arg
#load_pattern
if [ $src_cnt -gt 0 ];
then
build_sed_cat $pass
pass=$?
echo "pass= $pass"
for ((i=0; i<$pass; i++)); do
sed_str=${sed_cat_list[${i}]}
echo "sed_str [$i]: $sed_str"
echo
done
exit
cd $INPUT_PATH
current_path="."
process_files $current_path
echo_log "" "$log_file" 1 1
log_str="[+] $error_cnt Errores."
echo_log "$log_str" "$log_file" 1 1
log_str="[+] $process_cnt Archivos procesados."
echo_log "$log_str" "$log_file" 1 1
echo_log "" "$log_file" 1 1
cd $home_path
else
printf "[-] Error: No se encontro ningun patron de busqueda en el archivo: %s\n" "$src_pattern" 1>&2
fi
end_log
unset pattern_list
unset ext_list
unset src_list
unset dst_list
trap - INT TERM