Remove the files with creation time more than 10 days.
find . -type f -ctime +10 -exec rm {} +Get creation time of a file in a human-readable format.
stat -c "%w"Sourcing key-value pairs from a .env file.
[ -f .env ] && export $(grep -v '^#' .env | xargs)