diff options
Diffstat (limited to 'scripts/copier/copier.sh')
-rwxr-xr-x | scripts/copier/copier.sh | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/scripts/copier/copier.sh b/scripts/copier/copier.sh index 901c45f..3d8ccb5 100755 --- a/scripts/copier/copier.sh +++ b/scripts/copier/copier.sh @@ -1,7 +1,13 @@ #!/bin/sh -cat /path/to/.nnncp | xargs -0 | xsel -bi +# Linux +cat ~/.nnncp | xargs -0 | xsel -bi + +# macOS +# cat ~/.nnncp | xargs -0 | pbcopy # Termux -# cat /path/to/.nnncp | xargs -0 | termux-clipboard-set -# e.g.: cat /data/data/com.termux/files/home/.nnncp | xargs -0 | termux-clipboard-set +# cat /data/data/com.termux/files/home/.nnncp | xargs -0 | termux-clipboard-set + +# Cygwin +# cat ~/.nnncp | xargs -0 | clip |