Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Hopefully fairly straightforward, to explain the use case when I run the following command (OS X 10.6):

pwd | pbcopy

the pasteboard contains a newline character at the end. I'd like to get rid of it.

share|improve this question
Thanks for the answers! – user360112 Aug 16 '10 at 9:07
Sidenote: if the reason you want to do this is to paste into the "Go to" field in Finder (type ~), you can just use pwd | pbcopy, paste in the text field and then press backspace. – kizzx2 Apr 17 '11 at 5:54

2 Answers

up vote 15 down vote accepted

pwd | tr -d '\n' | pbcopy

share|improve this answer
1  
This also makes for a nice alias, alias copy="tr -d '\n' | pbcopy". – tobius Sep 17 '12 at 18:36
printf $(pwd) | pbcopy

or

echo -n $(pwd) | pbcopy
share|improve this answer
First one is unsafe: there could be %'s in the string. – grep Aug 15 '10 at 6:02
You can make it safe like this: printf '%s' $(pwd) | pbcopy – Dennis Williamson Aug 15 '10 at 8:26
The second command is very valuable. It is great to know about the "echo without newline" option: echo -n "text " or "text \c" – cwd Apr 16 '11 at 20:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.