I have a small script which extracts some text and pipes it to xclip ready for pasting somewhere else by using

Code:
$ some command | xclip -selection c
The problem I'm having is that the return string giving back from xclip always has a return statement added at the end of it. This is very well for pasting on a text editor but if I want to paste it on the terminal as one of the parameters everytime I paste it it ends the command not allowing me to enter the full command.

Code:
$ comand (xclip paste) some more command
So, is there a way to paste from xclip without the ending return statement?