clipboard

package module
v1.0.1 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Sep 2, 2023 License: MIT Imports: 3 Imported by: 4

README

Clipboard for Go

GoDoc

Cross-platform clipboard package that works on Windows, WSL, macOS and Linux.

go get github.com/antonmedv/clipboard

Usage

clipboard.WriteAll("Hello World!")
text, err := clipboard.ReadAll()

License

MIT

Documentation

Overview

Example
package main

import (
	"fmt"

	"github.com/antonmedv/clipboard"
)

func main() {
	clipboard.WriteAll("Привет, мир!")
	text, _ := clipboard.ReadAll()
	fmt.Println(text)

}
Output:

Привет, мир!

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

func ReadAll

func ReadAll() (string, error)

ReadAll read string from clipboard

func WriteAll

func WriteAll(text string) error

WriteAll write string to clipboard

Types

This section is empty.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL