mirror of
https://git.adityakumar.xyz/lfs-scripts.git
synced 2025-02-05 17:00:04 +00:00
11 lines
162 B
Bash
11 lines
162 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
rm -rf /tmp/*
|
||
|
|
||
|
find /usr/lib /usr/libexec -name \*.la -delete
|
||
|
|
||
|
find /usr -depth -name $(uname -m)-lfs-linux-gnu\* | xargs rm -rf
|
||
|
|
||
|
userdel -r tester
|
||
|
|