Sometimes, it is useful to copy files while preserving its timestamps.
cp -a source dest
scp -p source dest
To cp without replacement, we can use
rsync -au source/ dest/
Sometimes, it is useful to copy files while preserving its timestamps.
cp -a source dest
scp -p source dest
To cp without replacement, we can use
rsync -au source/ dest/