Linux server / centos commands
LINUX COMMANDS
list files and directories and show their permissions
ls -l
to also list hidden files, use:
ls -la
find all files changed at least one day ago but within three days ago
find . -ctime +1 -a -ctime -3