From ac8cfe6286849f685b81f28c40537ca64bfc3b8f Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 6 Feb 2015 14:44:43 +0000 Subject: [PATCH] fixed command substitution: line 55 --- functions/fn_details_distro | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/functions/fn_details_distro b/functions/fn_details_distro index cd57bedb0..f48d49e67 100644 --- a/functions/fn_details_distro +++ b/functions/fn_details_distro @@ -51,7 +51,7 @@ fi physmemtotal=$(free ${option} | awk '/Mem:/ {print $2}') physmemused=$(free ${option} | awk '/Mem:/ {print $3}') physmemfree=$(free ${option} | awk '/Mem:/ {print $4}') -swaptotal=$(free ${option} | | awk '/Swap:/ {print $2}') +swaptotal=$(free ${option} | awk '/Swap:/ {print $2}') swapused=$(free ${option} | awk '/Swap:/ {print $3}') swapfree=$(free ${option} | awk '/Swap:/ {print $4}')