Show HN: Cut, copy, and paste files in the terminal (github.com)
This is my new little project to build something I've been needing but haven't been able to find, a clipboard system for the terminal. If you ever need to copy or move some file but don't know where exactly, that's exactly what Clipboard excels at. I can't believe this hasn't been done before.
10 comments
[ 2.8 ms ] story [ 40.2 ms ] threadFor Linux, 'xclip -c' (copy) and 'xclip -p' (paste) respectively.
For MacOS, 'pbcopy' (copy) and 'pbpaste' (paste), respectively.
For Android, using Termux, 'termux-clipboard-set' (copy) and 'termux-clipboard-get' (paste) respectively. There are also keyboard mnemonics: Ctrl-Alt-C will copy, Ctrl-Alt-V will paste.
I believe there's also a feature on Windows via Cygwin, though it's been a couple of decades since I've had to use it.
Each of the above can read from stdin/stdout or file redirection.
E.g.:
And, no criticism at creating your own implementation, but it's very, very far from the first CLI-clipboard integration.
If it makes you feel any better, I've coded up my own solutions to several problems, only to discover existing, and better, solutions myself. Multiple times.
MacOS: <https://duckduckgo.com/?t=ffab&q=command+line+clipboard+maco...>
First result, pbcopy/pbpaste: <https://osxdaily.com/2009/12/09/access-the-clipboard-from-th...>
Linux: <https://duckduckgo.com/?q=command+line+clipboard+linux&t=ffa...>
First result, several, including xclip: <https://www.baeldung.com/linux/clipboard>
Android: <https://duckduckgo.com/?q=command+line+clipboard+android&t=f...>
This does worse, though there are, again, several options listed.
If you think to substitute "Termux" for "Android", this becomes the first result:
<https://wiki.termux.com/wiki/Termux-clipboard-set>
Again: it's fine to produce tools, even redundant ones. But you'd be more credible with greater accuracy in your claims and statements.
What pbcopy/pbpaste, xclip, and the Termux commands offer is an alternative to pasting via mouse actions.
You can still interact with mouse-based controls. I'll typically do that, for example, when case-normalising titles using a shell utility I'd created.
Since 'xc' will overwrite the clipboard if invoked in the same pipeline, this command fails to deliver expected results:
Instead, I can paste in some ALL CAPS TITLE, say: Running 'xp' alone, we see the result: So, again, you seem not to understand either the problem space or the available tools.Well, it has! Not that that should stop you from building your own.