From: Oscar J Rodriguez <josuer08@gmail.com>
Date: Fri, 29 Sep 2023 20:35:53 +0000 (-0700)
Subject: Update .bashrc
X-Git-Url: https://git.josue.xyz/?a=commitdiff_plain;p=dotfiles%2F.git

Update .bashrc

deleted bug that added a 1 every ttime you oppened a new terminal
---

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