melawy-etc-skel-std-powerma.../00_find_modified.sh

17 lines
285 B
Bash
Raw Permalink Normal View History

2023-10-22 04:11:19 +05:00
#!/bin/bash
if [[ "$UID" != 0 ]]; then
echo "USER NOT ROOT"
sudo "$0"
exit
else
echo "USER IS ROOT"
fi
2024-01-20 17:14:33 +05:00
find /home/liveuser -type f -newermt '2024-01-18 23:00' -ls |
2023-10-22 04:11:19 +05:00
grep -v '.cache' |
awk '{print $11}' |
2024-01-20 17:14:33 +05:00
sed -e "s|/home\/liveuser\/||g" > ./liveuser.txt
2023-10-22 04:11:19 +05:00
2023-10-29 00:48:06 +05:00
echo "Ready"