summaryrefslogtreecommitdiff
path: root/src/op_mode/show_ram.sh
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2021-10-25 21:02:27 +0200
committerGitHub <noreply@github.com>2021-10-25 21:02:27 +0200
commitd0dc71d7d22be9336934e2f84873f7a052a7f824 (patch)
treeef57be8139edd86ab7f0c95df27145ed6ed40824 /src/op_mode/show_ram.sh
parent316ae2ae4e7e06cbb3a59cc09002d1c48e3e5f07 (diff)
parent241a19943b7321aa1f2e2ece86b5ad68997390fe (diff)
downloadvyos-1x-d0dc71d7d22be9336934e2f84873f7a052a7f824.tar.gz
vyos-1x-d0dc71d7d22be9336934e2f84873f7a052a7f824.zip
Merge pull request #1040 from dmbaturin/T3937
T3937: rewrite the "show system memory" script in Python
Diffstat (limited to 'src/op_mode/show_ram.sh')
-rwxr-xr-xsrc/op_mode/show_ram.sh33
1 files changed, 0 insertions, 33 deletions
diff --git a/src/op_mode/show_ram.sh b/src/op_mode/show_ram.sh
deleted file mode 100755
index b013e16f8..000000000
--- a/src/op_mode/show_ram.sh
+++ /dev/null
@@ -1,33 +0,0 @@
-#!/bin/bash
-#
-# Module: vyos-show-ram.sh
-# Displays memory usage information in minimalistic format
-#
-# Copyright (C) 2019 VyOS maintainers and contributors
-#
-# This program is free software; you can redistribute it and/or modify
-# it under the terms of the GNU General Public License version 2 as
-# published by the Free Software Foundation.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program. If not, see <http://www.gnu.org/licenses/>.
-
-MB_DIVISOR=1024
-
-TOTAL=$(cat /proc/meminfo | grep -E "^MemTotal:" | awk -F ' ' '{print $2}')
-FREE=$(cat /proc/meminfo | grep -E "^MemFree:" | awk -F ' ' '{print $2}')
-BUFFERS=$(cat /proc/meminfo | grep -E "^Buffers:" | awk -F ' ' '{print $2}')
-CACHED=$(cat /proc/meminfo | grep -E "^Cached:" | awk -F ' ' '{print $2}')
-
-DISPLAY_FREE=$(( ($FREE + $BUFFERS + $CACHED) / $MB_DIVISOR ))
-DISPLAY_TOTAL=$(( $TOTAL / $MB_DIVISOR ))
-DISPLAY_USED=$(( $DISPLAY_TOTAL - $DISPLAY_FREE ))
-
-echo "Total: $DISPLAY_TOTAL"
-echo "Free: $DISPLAY_FREE"
-echo "Used: $DISPLAY_USED"