From 68ec1a616b106c46400fe452c546a1ddbaf121be Mon Sep 17 00:00:00 2001 From: Robert Langhammer Date: Tue, 9 Mar 2021 18:24:19 +0100 Subject: [PATCH] treewide: colorize command ip MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit It is hard to read non colorized ip output. This adds an alias to colorize ip by default. Signed-off-by: Robert Langhammer Reviewed-by: Fabian Bläse --- bsp/default/root_file_system/etc/profile | 1 + 1 file changed, 1 insertion(+) diff --git a/bsp/default/root_file_system/etc/profile b/bsp/default/root_file_system/etc/profile index 8de20517..63105744 100644 --- a/bsp/default/root_file_system/etc/profile +++ b/bsp/default/root_file_system/etc/profile @@ -23,6 +23,7 @@ alias l='ls -CF' alias la='ls -A' alias ll='ls -alF' alias ls='ls --color=auto' +alias ip='ip --color=auto' # and color my prompt export PS1='\[\033[01;32m\]\u@\h\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '