Thanks for the answers! – user360112Aug 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. – kizzx2Apr 17 '11 at 5:54
First one is unsafe: there could be %'s in the string. – grepAug 15 '10 at 6:02
You can make it safe like this: printf '%s' $(pwd) | pbcopy – Dennis WilliamsonAug 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" – cwdApr 16 '11 at 20:56
~), you can just usepwd | pbcopy, paste in the text field and then press backspace. – kizzx2 Apr 17 '11 at 5:54