From d9160bd45cb557d6af6beba058d52f897a2da2f6 Mon Sep 17 00:00:00 2001
From: Oscar J Rodriguez <josuer08@gmail.com>
Date: Fri, 29 Sep 2023 13:35:53 -0700
Subject: [PATCH] Update .bashrc

deleted bug that added a 1 every ttime you oppened a new terminal
---
 .bashrc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.bashrc b/.bashrc
index ff4b85b9..f84374fd 100644
--- a/.bashrc
+++ b/.bashrc
@@ -81,8 +81,8 @@ set -o vi
 
 #####adding the agent forwarding stuff
 if [ -z "$SSH_AUTH_SOCK" ] ; then
-    eval `ssh-agent` > /dev/null 2&>1;
-    ssh-add > /dev/null 2&>1;
+    eval `ssh-agent` > /dev/null 2>&1;
+    ssh-add > /dev/null 2>&1;
 
 fi
 
-- 
2.25.1