My build of nnn with minor changes
Du kannst nicht mehr als 25 Themen auswählen
Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
|
- #!/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
|