From e17d236bee7a49b96b70c65c25a845db38d80ac6 Mon Sep 17 00:00:00 2001 From: shane chambers Date: Sun, 11 Jul 2021 05:00:47 -0600 Subject: [PATCH] fixing a spelling issue --- languages/bash.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/languages/bash.sh b/languages/bash.sh index ea106d6..6d3d567 100644 --- a/languages/bash.sh +++ b/languages/bash.sh @@ -381,7 +381,7 @@ n<&m # file descriptor n is made to be a copy of the input file descriptor <&- # closes the standard input >&- # closes the standard output n>&- # closes the ouput from file descriptor n -n<&- # closes the input from file descripor n +n<&- # closes the input from file descriptor n |tee # output command to both terminal and a file (-a to append to file)