How to update a timestamp of a file to the current time
touch
How to update timestamp but prevent file from being accidentally created
touch -c
update timestamp to a custom date
touch -d
how to copy a file and preserve original owner
cp -p
how to copy all things in a fuldore (flag
-r
copy lots of stuff and preserve owners of folders, and preserve symbolic links as well
cp -a