#!/bin/shecho"dumping swap back into memory...";
sudoswapoff-a||{echo"failed to turn off swap";exit1;}echo"swap has been cleared and dumped back into memory"
sudoswapon-a||{echo"failed to re-enable swap";exit1;}echo"fresh swap storage has been re-enabled"