Aggiorna README.md

This commit is contained in:
Fabio 2025-03-27 15:07:41 +08:00
parent 233705ac17
commit 73b6693b34

View file

@ -116,3 +116,15 @@ per scaricare un sito completo
per scaricare una dir di un sito per scaricare una dir di un sito
wget -rkpN -np -e robots=off -l1 https://brouter.de/brouter/profiles2/ wget -rkpN -np -e robots=off -l1 https://brouter.de/brouter/profiles2/
## sed per sostituire e per inserire
per sostituire
sed -i 's/vite dev/vite dev --host 0.0.0.0 --port 8111/g' package.json
sed -i 's/<string out>/<string in>/g' <file>
per inserire righe dopo una stringa usando un file
sed -i '/link rel/r icon' src/app.html
sed -i '/<sting>/r <file da ins>' <file da mod>