5 lines
87 B
Bash
5 lines
87 B
Bash
|
#!/bin/bash
|
||
|
# Disable and reenable swaps to clear them.
|
||
|
sudo swapoff -a
|
||
|
sudo swapon -a
|