mirror of
https://github.com/jarun/nnn.git
synced 2024-11-16 16:13:16 +00:00
14 lines
231 B
Bash
Executable file
14 lines
231 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Linux
|
|
cat ~/.nnncp | xargs -0 | xsel -bi
|
|
|
|
# macOS
|
|
# cat ~/.nnncp | xargs -0 | pbcopy
|
|
|
|
# Termux
|
|
# cat /data/data/com.termux/files/home/.nnncp | xargs -0 | termux-clipboard-set
|
|
|
|
# Cygwin
|
|
# cat ~/.nnncp | xargs -0 | clip
|