added https to curl and wget functions

This commit is contained in:
2023-10-13 02:20:18 -05:00
parent 1be21931ae
commit 1e6a069e06

View File

@@ -58,9 +58,9 @@ if [ -x /usr/lib/command-not-found -o -x /usr/share/command-not-found/command-no
fi
function curla() {
curl aknlw.com/${1}
curl https://aknlw.com/${1}
}
function wgeta() {
wget aknlw.com/${1}
wget https://aknlw.com/${1}
}