mirror of
https://github.com/fleschutz/PowerShell.git
synced 2025-04-05 23:08:44 +02:00
Added metadata
This commit is contained in:
parent
a51c978c90
commit
30528b2f2a
@ -1,11 +1,15 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
#
|
|
||||||
|
# Syntax: ./swap2ram
|
||||||
|
# Description: swaps back to RAM
|
||||||
|
# Author: Markus Fleschutz
|
||||||
|
# Source: github.com/fleschutz/PowerShell
|
||||||
|
# License: CC0
|
||||||
# NOTE: for automation copy me to /etc/cron.daily
|
# NOTE: for automation copy me to /etc/cron.daily
|
||||||
|
|
||||||
|
SwapUsed=$(LC_ALL=C free | awk '/Swap:/ {print $3}')
|
||||||
RAMsize=$(LC_ALL=C free | awk '/Mem:/ {print $2}')
|
RAMsize=$(LC_ALL=C free | awk '/Mem:/ {print $2}')
|
||||||
RAMfree=$(LC_ALL=C free | awk '/Mem:/ {print $4}')
|
RAMfree=$(LC_ALL=C free | awk '/Mem:/ {print $4}')
|
||||||
SwapUsed=$(LC_ALL=C free | awk '/Swap:/ {print $3}')
|
|
||||||
|
|
||||||
|
|
||||||
echo "Swapping $SwapUsed bytes back to $RAMsize bytes RAM ($RAMfree bytes free) ..."
|
echo "Swapping $SwapUsed bytes back to $RAMsize bytes RAM ($RAMfree bytes free) ..."
|
||||||
start=`date +%s`
|
start=`date +%s`
|
||||||
|
Loading…
Reference in New Issue
Block a user