Hacker News new | ask | show | jobs
by PenguinRevolver 482 days ago
Your source points out that:

< You can also create [APFS (copy on write) clones] in Terminal using the command `cp -c oldfilename newfilename` where the c option requires cloning rather than a regular copy.

`fclones dedupe` uses the same command[1]:

  if cfg!(target_os = "macos") {
      result.push(format!("cp -c {target} {link}"));
[1] https://github.com/pkolaczk/fclones/blob/555cde08fde4e700b25...
1 comments

I stand corrected, thank you!