From 3cdb83f092f7d73fe963a0ef1cd695fbc27dca2d Mon Sep 17 00:00:00 2001 From: Nick Chambers Date: Tue, 7 Dec 2021 05:54:13 -0600 Subject: [PATCH] Remove unnecessary config variables --- bash/irc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/bash/irc b/bash/irc index 8c7e022..b1d57ca 100755 --- a/bash/irc +++ b/bash/irc @@ -1,9 +1,7 @@ #!/usr/bin/env bash host=irc.libera.chat port=6667 -nick=bashbot ident=bashbot realname=bashbot - -exec {sock}<>/dev/tcp/"$host"/"$port" +exec {sock}<>/dev/tcp/irc.libera.chat/6667 while IFS= read -ru "$sock" line; do line=${line%$'\r'}