Skip to content

Instantly share code, notes, and snippets.

@vor0nwe
Last active September 13, 2023 14:59
Show Gist options
  • Save vor0nwe/4c9a2561d79a833abe4f10e9f17d6002 to your computer and use it in GitHub Desktop.
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)
#!/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
@AyushRawal
Copy link

Exactly what I was looking for. Thanks 😊.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment