I realise that every file is a hard link. This is what I mean precisely: if an inode has more than one file pointing to it, how can I copy the inode so that every file is pointing to a separate inode with the same content?
For example:
echo "Example" > one
ln one two
How can I make the file two
have the same contents as one
, without sharing an inode? I would like to "reduplicate", if you like, the files.