nnn/misc/clipboard-copier/copier
Arun Prakash Jana 2d1d176160
Fix #288
2019-06-20 19:17:00 +05:30

21 lines
383 B
Bash
Executable file

#!/usr/bin/env sh
# Description: Copy selection to clipboard
#
# Shell: POSIX compliant
# Author: Arun Prakash Jana
SELECTION=${XDG_CONFIG_HOME:-$HOME/.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