mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
21 lines
359 B
Bash
Executable file
21 lines
359 B
Bash
Executable file
#!/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
|