mirror of
https://github.com/BBaoVanC/bbaovanc.com.git
synced 2025-07-03 18:47:30 -05:00
9 lines
222 B
Bash
Executable File
9 lines
222 B
Bash
Executable File
#!/bin/sh
|
|
|
|
diff -qrNtbB old/ new/ |
|
|
grep -oP '(?<=\s)new\/\S*' |
|
|
xargs -d '\n' ls -1d 2>/dev/null |
|
|
grep 'index.html$' |
|
|
sed 's/index.html$//' |
|
|
sed "s/^new/${SCHEME:=http}:\/\/${DOMAIN:=example.com}/"
|