17 lines
435 B
Bash
17 lines
435 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
ruta='/root/dpbt'
|
||
|
|
|
||
|
|
for i in `ls $ruta`; do
|
||
|
|
dir="$ruta/$i"
|
||
|
|
for file in `ls $dir`; do
|
||
|
|
echo -e "[$file]=> $dir"
|
||
|
|
#sed -i 's;raw.githubusercontent.com\/NetVPS\/Generador-BOT\/main;\/darix.ooguy.com\/drowkid01\/dpbt\/raw\/branch\/main;g' $dir/$file
|
||
|
|
sed -i 's;\/\/\/;\/\/;g' $dir/$file
|
||
|
|
sed -i 's;@ChumoGH;@drowkid01;g' $dir/$file
|
||
|
|
sed -i 's;ChumoGH;drowkid01;g' $dir/$file
|
||
|
|
chmod +rwx $dir/$file
|
||
|
|
echo -ne " \e[1;32m [+]"
|
||
|
|
done
|
||
|
|
done
|