2021-03-24 12:09:08 +00:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# Description: Simple script to give copy-paste a progress percentage
|
|
|
|
# by utilizing rsync.
|
|
|
|
#
|
|
|
|
# LIMITATION: this won't work when pasting to MTP device.
|
|
|
|
#
|
|
|
|
# Dependencies: rsync
|
|
|
|
#
|
|
|
|
# Shell: POSIX compliant
|
|
|
|
# Author: Benawi Adha
|
|
|
|
|
|
|
|
sel=${NNN_SEL:-${XDG_CONFIG_HOME:-$HOME/.config}/nnn/.selection}
|
|
|
|
|
|
|
|
# Choose one of these two schemes by commenting
|
|
|
|
|
|
|
|
# more verbose
|
2022-02-01 10:29:40 +00:00
|
|
|
xargs -0 -I % rsync -ah --progress % "$PWD" < "$sel"
|
2021-03-24 12:09:08 +00:00
|
|
|
|
|
|
|
# less verbose
|
2022-02-01 10:29:40 +00:00
|
|
|
# xargs -0 -I % rsync -ah --info=progress2 % "$PWD" < "$sel"
|
2021-03-27 11:37:58 +00:00
|
|
|
|
|
|
|
# Clear selection
|
|
|
|
if [ -p "$NNN_PIPE" ]; then
|
|
|
|
printf "-" > "$NNN_PIPE"
|
|
|
|
fi
|