Aggiorna README.md
This commit is contained in:
parent
233705ac17
commit
73b6693b34
1 changed files with 13 additions and 1 deletions
12
README.md
12
README.md
|
@ -116,3 +116,15 @@ per scaricare un sito completo
|
|||
per scaricare una dir di un sito
|
||||
|
||||
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>
|
||||
|
|
Loading…
Reference in a new issue