To append a file with one fetched from a URL, use wget
and output to STDOUT
then redirect and append where needed.
# wget -q 'http://10.11.178.141/all_pub_keys' -O - >>/root/.ssh/authorized_keys
In this case I wanted to add some public keys to an existing authorized_keys
file.