From 94375a4fbc76fae164ff39a238d3a2eb0d605d26 Mon Sep 17 00:00:00 2001 From: Maxim Likhachev Date: Wed, 4 Dec 2019 13:45:36 +0300 Subject: [PATCH] bash: fixed cmd_not_found output --- etc/shell/bash/aliases | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/shell/bash/aliases b/etc/shell/bash/aliases index 1b081da..b4f775a 100755 --- a/etc/shell/bash/aliases +++ b/etc/shell/bash/aliases @@ -128,7 +128,7 @@ command_not_found_handle() { #noindex echo "$red[$@] -> $green[$ex]$rstc" bash --rcfile ~/.bashrc -c "$ex" else - echo >&2 "$redКоманда ${green}${1}${red} не найдена.$rstc" + echo >&2 "${red}Команда ${green}${1}${red} не найдена.$rstc" fi fi }