Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
1answer
54 views

Set clipboard to image - pbcopy

How do you set an image as the clipboard with pbcopy? This doesn't work: cat image.png | pbcopy
1
vote
4answers
1k views

Unable to have pbcopy -clipboard inside Screen

Problem Not solved although one answer was accepted: We are working to get Jonah's code to work. Problem: to change the code of (1) to (2) I know the thread. I want to be able to run the following ...
1
vote
2answers
302 views

Unable to pbcopy at Vim's ED editor

I have tried unsuccessfully to copy the pwd to pbcopy as follows pwd | !pbcopy How can you copy your path in Vim's ED editor (: -mode)?
1
vote
1answer
36 views

Unable to save pbcopy to a new file without opening a text-editor

I tried the following code unsuccessfully cat pbcopy >> newFile How can you save your clipboard to the file newFile without opening a text-editor?
0
votes
1answer
30 views

pbcopy Specific Part of Shell Script

I am using the goo.gl URL shortener to shorten URL's with a curl command. The command is below: curl https://www.googleapis.com/urlshortener/v1/url \ -H 'Content-Type: application/json' \ -d ...
0
votes
1answer
83 views

How to use NSTask with pbcopy?

I am a beginner and I have a problem. I would like to use NSTask with the command "pbcopy". I tried this but it seems that it doesn't work : NSTask *task; task = [[NSTask alloc] init]; [task ...
0
votes
1answer
214 views

Unix: command to strip white space characters

When I do the following unix command: pwd | pbcopy is there something I can add to the command so that the string copied to my clipboard does not have any trailing whitespace? (fyi: The reason I ...