mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-09 18:45:54 +02:00
9 lines
126 B
Bash
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
|
|
|