Files
public_scripts/swap_file_size_change.sh

6 lines
82 B
Bash

#!/bin/bash
sudo swapoff $1
sudo fallocate -l $2 $1
sudo mkswap $1
sudo swapon $1