From 1108998788394b25e852c171d6c69edf83d48063 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Fri, 25 Mar 2022 10:09:43 -0300 Subject: [PATCH] Update .zshrc_aliases --- dotfiles/.zshrc_aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dotfiles/.zshrc_aliases b/dotfiles/.zshrc_aliases index dfe586b..08d392a 100644 --- a/dotfiles/.zshrc_aliases +++ b/dotfiles/.zshrc_aliases @@ -46,7 +46,7 @@ function gac() { } function smtp() { - cat "$1" | while read -r LINE; do sleep 0.1; echo "$LINE"; done | nc "$2" "${3:-25}" + cat "$1" | while read -r LINE; do sleep 1; echo "$LINE"; done | ncat -C -v "$2" "${3:-25}" }