4 lines
109 B
Bash
4 lines
109 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
find /home -maxdepth 2 -type d -name .cache -exec rm -rf {} \;
|
||
|
systemctl restart display-manager
|