-
-
Notifications
You must be signed in to change notification settings - Fork 156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Suggestion: a clipboard manager #221
Comments
Have you tried using |
Yes, one example of why a wrapper that follows UNIX conventions would be that |
I use a bash function clip () {
local clip_path=/mnt/c/Windows/System32/Clip.exe
local in=$1
[ ! -f ${clip_path} ] && echo "${clip_path} binary not found" && return 1
[ -z "$in" ] && in=`cat`
echo ${in} | sed 's#\n$#\r\n#g' | ${clip_path}
} |
|
Hi,
It’d be nice to have a utility that allows interacting with the host clipboard in a UNIX-y manner: read on stdin via pipe, via redirection etc.
Thanks!
The text was updated successfully, but these errors were encountered: