removed up alias from zshrc (created new dedicated implementation)

This commit is contained in:
Random936 2024-01-29 15:19:50 -08:00
parent f1979e6387
commit f4b4f9b34b

11
.zshrc
View File

@ -241,17 +241,6 @@ function .... () {cd ../../../}
function ..... () {cd ../../../../} function ..... () {cd ../../../../}
function ...... () {cd ../../../../../} function ...... () {cd ../../../../../}
function up() {
for ip in $(ifconfig | awk "/inet .*$1/ {print \$2}" | cut -d / -f 1)
do
for filepath in $(find . -maxdepth 1 -type f -name '[^.]*' | cut -d '/' -f 2-)
do
echo "http://$ip/$filepath"
done
done
sudo python3 -m http.server 80
}
# Wordlists # Wordlists
export rockyou="/usr/share/seclists/Passwords/Leaked-Databases/rockyou.txt" export rockyou="/usr/share/seclists/Passwords/Leaked-Databases/rockyou.txt"
export fasttrack="/usr/share/seclists/Passwords/fasttrack.txt" export fasttrack="/usr/share/seclists/Passwords/fasttrack.txt"