Files
2022-04-25 10:12:53 +02:00

22 lines
1.1 KiB
Bash
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
#!/bin/bash
# http://httrack.kauler.com/help/User-defined_structure
# httrack http://dev.performance-art.fr -O ./web -N "%h%p/%n/index%[page].%t" --near --mirror-wizard --quiet --do-not-log -%v2 -X -p7 --robots=0 --footer '' --sockets=99 −−maxrate=99999999 --disable-security-limits −−keepalive
httrack http://dev.performance-art.fr --path ./web --mirror-wizard --update --max-rate=9999999999999 --sockets=99 --near -N "%h%p/%n/index%[page].%t" --robots=0 --keep-alive --footer '' --display --do-not-log --quiet --disable-security-limits -p7 -K3
# --continue
# httrack http://dev.performance-art.fr -O ./web -N "%h%p/%n%[page].%t" --near -WqQ%v --robots=0 --footer ''
# remove the ajax block from home with sed
# move the index @the right place
# mv web/dev.performance-art.fr/index/index.html web/dev.performance-art.fr/index.html
# as the index file moved, replace ../../ by ../ every-were
# find . -type f -name "*.html" -print0 | xargs -0 sed -i 's/\.\.\/\.\.\//\.\.\//g'
# grep -rlZ '\.\.\/\.\.\/' . | xargs -0 sed -i.bak 's/\.\.\/\.\.\//\.\.\//g'