winclipshot

(★ 20)

Windows clipboard-to-path helper for terminal CLIs like Claude Code. Screenshot with Win+Shift+S, paste the saved path with Ctrl+V

winclipshot Latest Version Download

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

go install

View Details ▼

Compile and install packages named by the import paths.

go install

Compile and install the current package:

go install {{path/to/package}}

Compile and install a specific local package:

go install {{golang.org/x/tools/gopls}}@{{latest}}

Install the latest version of a program, ignoring `go.mod` in the current directory:

🔍

paste

View Details ▼

Merge lines of files.

paste {{[-s|--serial]}} {{path/to/file}}

Join all the lines into a single line, using `TAB` as delimiter:

paste {{[-s|--serial]}} {{[-d|--delimiters]}} {{delimiter}} {{path/to/file}}

Join all the lines into a single line, using the specified delimiter:

paste {{path/to/file1}} {{path/to/file2}}

Merge two files side by side, each in its column, using `TAB` as delimiter:

// repository documentation