In order to pass the contents of one file to another we can, for example:
cat ~/temp_minhakey.pub >> ~/.ssh/authorized_keys
Let's say, we need to append more content to authorized_keys, but we don't want to overwrite it.
Should we use cat again for the next keys ? Or should we flag with something specific ?
Thanks in advance.