Clipboard viewer for OS X that allows extracting the data in any available format
up vote
3
down vote
favorite
I am looking for a clipboard viewer for OS X which will show all formats that the clipboard is holding the data in. (I.e. something similar to the Clipbook viewer in Windows XP.)
I found a number of programs that show the contents of the clipboard, but I haven't been able to find one which lists all formats available on the clipboard at the moment, and makes it possible to extract either of them. I believe the OS X clipboard can hold the data in multiple formats simultaneously, just like Windows (e.g. in MS Word there's a Paste special... menu item which allows selecting the format to paste).
macos clipboard
add a comment |
up vote
3
down vote
favorite
I am looking for a clipboard viewer for OS X which will show all formats that the clipboard is holding the data in. (I.e. something similar to the Clipbook viewer in Windows XP.)
I found a number of programs that show the contents of the clipboard, but I haven't been able to find one which lists all formats available on the clipboard at the moment, and makes it possible to extract either of them. I believe the OS X clipboard can hold the data in multiple formats simultaneously, just like Windows (e.g. in MS Word there's a Paste special... menu item which allows selecting the format to paste).
macos clipboard
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I am looking for a clipboard viewer for OS X which will show all formats that the clipboard is holding the data in. (I.e. something similar to the Clipbook viewer in Windows XP.)
I found a number of programs that show the contents of the clipboard, but I haven't been able to find one which lists all formats available on the clipboard at the moment, and makes it possible to extract either of them. I believe the OS X clipboard can hold the data in multiple formats simultaneously, just like Windows (e.g. in MS Word there's a Paste special... menu item which allows selecting the format to paste).
macos clipboard
I am looking for a clipboard viewer for OS X which will show all formats that the clipboard is holding the data in. (I.e. something similar to the Clipbook viewer in Windows XP.)
I found a number of programs that show the contents of the clipboard, but I haven't been able to find one which lists all formats available on the clipboard at the moment, and makes it possible to extract either of them. I believe the OS X clipboard can hold the data in multiple formats simultaneously, just like Windows (e.g. in MS Word there's a Paste special... menu item which allows selecting the format to paste).
macos clipboard
macos clipboard
asked Jan 24 '13 at 21:16
Szabolcs
1,08831433
1,08831433
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
up vote
5
down vote
You can see the different types by running the clipboard as record
in AppleScript Editor.
the clipboard
, the clipboard as text
, or Unicode text of (the clipboard as record)
will return a plain text version. AppleScript still converts line endings to CR though.
1
$ osascript -e 'the clipboard as record' | less
for a command line one-liner
– Robin Nemeth
Aug 9 '17 at 11:47
add a comment |
up vote
1
down vote
The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.
Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.
Where exactly can one find the ClipboardViewer.app source code?
– tml
Jun 28 at 7:20
There are links to the source and binary at superuser.com/questions/246714/…
– Ian Dunn
Sep 18 at 16:45
I added the link to the source of clipboard viewer. Thanks @ian-dunn.
– Paul Libbrecht
Nov 25 at 16:50
add a comment |
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
5
down vote
You can see the different types by running the clipboard as record
in AppleScript Editor.
the clipboard
, the clipboard as text
, or Unicode text of (the clipboard as record)
will return a plain text version. AppleScript still converts line endings to CR though.
1
$ osascript -e 'the clipboard as record' | less
for a command line one-liner
– Robin Nemeth
Aug 9 '17 at 11:47
add a comment |
up vote
5
down vote
You can see the different types by running the clipboard as record
in AppleScript Editor.
the clipboard
, the clipboard as text
, or Unicode text of (the clipboard as record)
will return a plain text version. AppleScript still converts line endings to CR though.
1
$ osascript -e 'the clipboard as record' | less
for a command line one-liner
– Robin Nemeth
Aug 9 '17 at 11:47
add a comment |
up vote
5
down vote
up vote
5
down vote
You can see the different types by running the clipboard as record
in AppleScript Editor.
the clipboard
, the clipboard as text
, or Unicode text of (the clipboard as record)
will return a plain text version. AppleScript still converts line endings to CR though.
You can see the different types by running the clipboard as record
in AppleScript Editor.
the clipboard
, the clipboard as text
, or Unicode text of (the clipboard as record)
will return a plain text version. AppleScript still converts line endings to CR though.
answered Jan 25 '13 at 8:20
user495470
30.8k586125
30.8k586125
1
$ osascript -e 'the clipboard as record' | less
for a command line one-liner
– Robin Nemeth
Aug 9 '17 at 11:47
add a comment |
1
$ osascript -e 'the clipboard as record' | less
for a command line one-liner
– Robin Nemeth
Aug 9 '17 at 11:47
1
1
$ osascript -e 'the clipboard as record' | less
for a command line one-liner– Robin Nemeth
Aug 9 '17 at 11:47
$ osascript -e 'the clipboard as record' | less
for a command line one-liner– Robin Nemeth
Aug 9 '17 at 11:47
add a comment |
up vote
1
down vote
The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.
Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.
Where exactly can one find the ClipboardViewer.app source code?
– tml
Jun 28 at 7:20
There are links to the source and binary at superuser.com/questions/246714/…
– Ian Dunn
Sep 18 at 16:45
I added the link to the source of clipboard viewer. Thanks @ian-dunn.
– Paul Libbrecht
Nov 25 at 16:50
add a comment |
up vote
1
down vote
The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.
Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.
Where exactly can one find the ClipboardViewer.app source code?
– tml
Jun 28 at 7:20
There are links to the source and binary at superuser.com/questions/246714/…
– Ian Dunn
Sep 18 at 16:45
I added the link to the source of clipboard viewer. Thanks @ian-dunn.
– Paul Libbrecht
Nov 25 at 16:50
add a comment |
up vote
1
down vote
up vote
1
down vote
The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.
Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.
The MacOSX developer tools come with an example app called "ClipboardViewer.app" and its source for Xcode.
This is by far the most explicit clipboard exploration tool I've found for MacOSX: it shows the string of the clipboard flavour (called UTI on MacOSX) and a hex dump of the content.
Here is an example screenshot made with this app (using a Mathematica source). It would be cool if such a project could be made into an open-source project for MacOSX instead of being a dev-tool-thing. However, there's a public web-page of Apple dev support, where you can download the sample project and compile it using XCode; as of today (late 2018), one needs to let the suggested be applied such as chaning architecture from 32 to 64 bits; after this all compiles well.
edited Nov 25 at 16:49
answered Jul 24 '16 at 23:19
Paul Libbrecht
112
112
Where exactly can one find the ClipboardViewer.app source code?
– tml
Jun 28 at 7:20
There are links to the source and binary at superuser.com/questions/246714/…
– Ian Dunn
Sep 18 at 16:45
I added the link to the source of clipboard viewer. Thanks @ian-dunn.
– Paul Libbrecht
Nov 25 at 16:50
add a comment |
Where exactly can one find the ClipboardViewer.app source code?
– tml
Jun 28 at 7:20
There are links to the source and binary at superuser.com/questions/246714/…
– Ian Dunn
Sep 18 at 16:45
I added the link to the source of clipboard viewer. Thanks @ian-dunn.
– Paul Libbrecht
Nov 25 at 16:50
Where exactly can one find the ClipboardViewer.app source code?
– tml
Jun 28 at 7:20
Where exactly can one find the ClipboardViewer.app source code?
– tml
Jun 28 at 7:20
There are links to the source and binary at superuser.com/questions/246714/…
– Ian Dunn
Sep 18 at 16:45
There are links to the source and binary at superuser.com/questions/246714/…
– Ian Dunn
Sep 18 at 16:45
I added the link to the source of clipboard viewer. Thanks @ian-dunn.
– Paul Libbrecht
Nov 25 at 16:50
I added the link to the source of clipboard viewer. Thanks @ian-dunn.
– Paul Libbrecht
Nov 25 at 16:50
add a comment |
Thanks for contributing an answer to Super User!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f541335%2fclipboard-viewer-for-os-x-that-allows-extracting-the-data-in-any-available-forma%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown