Upgraded seo, made dependencycheck its own func

This commit is contained in:
z3rOR0ne 2022-09-04 00:59:11 -07:00
parent 26ea15a216
commit f88adb2691
2 changed files with 41 additions and 1 deletions

View file

@ -1,3 +1,6 @@
#!/bin/sh
seoanalyze https://"${1}" --output-format html > seo.html && links seo.html
# grabs the url before the .com or .org, etc
url=$(echo "${1}" | sed 's/\..*$//')
seoanalyze https://"${1}" --output-format html > "${url}".html && links "${url}".html