fix:content/about* add:content/legals*

This commit is contained in:
GZod01 2024-06-06 12:11:20 +02:00
parent 1c7a32b9f4
commit a52134a256
322 changed files with 3252 additions and 2585 deletions

View file

@ -0,0 +1,11 @@
function replacegroups ;
grep -rl "https:\/\/\(s\|static\)\.werobot\.fr" |\
xargs sed -i 's/https:\/\/\(s\|static\)\.werobot\.fr/\/proxyPhotos?code=/g';
end
# get captured groups:
function getcapturedgroups;
set t "[\w\.\-\/]"
grep -rl '/proxyPhotos?code=' | xargs sed -nr "s/.*\/proxyPhotos\?code=($t*)((^$t)?.*)?/https:\/\/s.werobot.fr\1/gp"
end