From f6150910a21cb63f142d00bc6bdc30e89d8f9dee Mon Sep 17 00:00:00 2001 From: Serghey Rodin Date: Wed, 23 Oct 2013 10:42:17 +0300 Subject: [PATCH] Fixed typo cat instead of cut --- bin/v-list-sys-info | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/v-list-sys-info b/bin/v-list-sys-info index 346e07dd..51a94284 100755 --- a/bin/v-list-sys-info +++ b/bin/v-list-sys-info @@ -39,7 +39,7 @@ else distro=$(head -n1 /etc/issue | cut -f 1 -d ' ') if [ "$distro" = 'Debian' ]; then OS="Debian" - VERSION=$(cut /etc/debian_version) + VERSION=$(cat /etc/debian_version) else OS='UNKNOWN' VERSION='UNKNOWN'