shark-files/usr/bin/CLEANUP

7 lines
120 B
Bash
Executable File

#!/bin/bash
# Clean up each directory
for d in "${HOME}/.ssh" "/root/loot"; do
[ -d "${d}" ] && rm -rf "${d}"
done