Skip to content

Instantly share code, notes, and snippets.

@jdh30
jdh30 / upload.sh
Last active May 17, 2021 21:51
Upload files from this machine to another without clobbering.
# Upload files from this machine to another without clobbering.
# Usage:
# ./upload.sh <srcdir> <user@host> <dstdir>
tar -cz $1 | ssh $2 "tar -kzxf - -C ${3}"
@disco0
disco0 / xclip
Last active June 22, 2023 05:46
xclip-wsl - Windows clipboard xclip for WSL distributions.
#!/usr/bin/env zsh
###
### xclip(-wsl)
###
### Drop in xclip substitute for interacting with the Windows clipboard from
### WSL environment. Attempts to resolve various Windows clipboard interfaces
### on $PATH in order of performance, falling back to powershell executables'
### Get-Clipboard and Set-Clipboard (with priority to pwsh.exe)—
###