dotfiles/.config/shell/bin/rmswp

13 lines
185 B
Bash
Executable file

#!/bin/bash
# Deletes the swapfile created by mkswp()
if [ -d /swap ]; then
SWAPFILE=/swap/swapfile
else
SWAPFILE=/swapfile
fi
sudo swapoff -v "$SWAPFILE"
sudo rm "$SWAPFILE"