aboutsummaryrefslogtreecommitdiffstats
path: root/misc/clipboard-copier/copier
blob: e20dcf4706191f795c4a23da0a252e8d935431d4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/usr/bin/env sh

# Description: Copy selection to clipboard
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana

SELECTION=~/.config/nnn/.selection

# Linux
cat "$SELECTION" | xargs -0 | xsel -bi

# macOS
# cat "$SELECTION" | xargs -0 | pbcopy

# Termux
# cat "$SELECTION" | xargs -0 | termux-clipboard-set

# Cygwin
# cat "$SELECTION" | xargs -0 | clip