melawy-skel-root/00_find_modified.sh

17 lines
281 B
Bash
Executable File

#!/bin/bash
if [[ "$UID" != 0 ]]; then
echo "USER NOT ROOT"
sudo "$0"
exit
else
echo "USER IS ROOT"
fi
find /home/liveuser -type f -newermt '2022-10-21 17:30' -ls |
grep -v '.cache' |
awk '{print $11}' |
sed -e "s|/home\/liveuser\/||g" > ./root.txt
echo "Ready"