mirror of
https://github.com/bettercap/bettercap
synced 2025-07-15 01:23:42 -07:00
9 lines
259 B
Makefile
9 lines
259 B
Makefile
all: facebook
|
|
|
|
facebook:
|
|
wget -U "Mozilla/5.0 (Windows NT 5.2; rv:2.0.1) Gecko/20100101 Firefox/4.0.1" -S -r www.facebook.com
|
|
find www.facebook.com -name "*.html" -print0 | xargs -0 sed -i "s/https:\/\/www.facebook.com//g"
|
|
|
|
clean:
|
|
rm -rf www.facebook.com
|
|
|