-
-
Save vor0nwe/4c9a2561d79a833abe4f10e9f17d6002 to your computer and use it in GitHub Desktop.
clip: WSL bash script to access the Windows Clipboard (both read and write)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
[[ ! -t 1 ]] && powershell.exe Get-Clipboard | |
[[ ! -t 0 ]] && clip.exe | |
if [[ -t 1 && -t 0 ]]; then | |
echo Nothing specified to copy or paste! >&2 | |
exit 1 | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Exactly what I was looking for. Thanks 😊.