Files
bpfire/config/fstrim/trim
2013-01-17 20:38:01 +01:00

9 lines
126 B
Bash

#!/bin/bash
#
# Script to trim free space on solid state drives.
#
for i in / /boot /var; do
fstrim $i 2>&1 >/dev/null
done