My build of nnn with minor changes
No puede seleccionar más de 25 temas
Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.
|
- #!/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
-
- # Wayland
- # cat "$SELECTION" | xargs -0 | wl-copy
|