From f4b4f9b34b778583508020068a8f0c1272ce7e75 Mon Sep 17 00:00:00 2001 From: Random936 Date: Mon, 29 Jan 2024 15:19:50 -0800 Subject: [PATCH] removed up alias from zshrc (created new dedicated implementation) --- .zshrc | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/.zshrc b/.zshrc index 4b5a710..2e0852e 100644 --- a/.zshrc +++ b/.zshrc @@ -241,17 +241,6 @@ 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 export rockyou="/usr/share/seclists/Passwords/Leaked-Databases/rockyou.txt" export fasttrack="/usr/share/seclists/Passwords/fasttrack.txt"