Files
linux-tkg/linux-tkg-config/5.17/cleanup
Tk-Glitch c7ab89eaa8 5.17 RC1
2022-01-23 21:40:09 +01:00

11 lines
141 B
Bash
Executable File

#!/bin/bash
for _f in /usr/lib/modules/*tkg*; do
if [[ ! -e ${_f}/vmlinuz ]]; then
rm -rf "$_f"
fi
done
# vim:set ft=sh sw=2 et: