Fast Unix Commands: https://alexsaveau.dev/blog/projects/performance/files/fuc/fast-unix-commands (via HN)
„Tar
Shockingly, collecting a directory into a tarball and then extracting it into a new directory to copy it is often faster than cp.“
Class assignment: explain why🤓
@icing my preferred way of copying a directory for ages has been
(cd source; tar cf - .) | (cd dest; tar xf -)
I can never remember how cp -r works.