Move files while preserving timestamps
A quick way to move files in linux while keeping their timestamps. In short mv doesn't support this. The work around is to copy instead.
cp -p -r -l source/date target/
rm -rf source/data
A quick way to move files in linux while keeping their timestamps. In short mv doesn't support this. The work around is to copy instead.
cp -p -r -l source/date target/
rm -rf source/data