diff options
| author | 2018-11-28 04:16:14 +0530 | |
|---|---|---|
| committer | 2018-11-28 04:16:14 +0530 | |
| commit | b7eb509ffb471c11e27e227a5836bcd379a7cab3 (patch) | |
| tree | 108bf5efd0abd1cb13f5426af9b3878fb32e178e | |
| parent | c0b9703831a39593e99a7849f8caf6df40c2c208 (diff) | |
| download | nnn-b7eb509ffb471c11e27e227a5836bcd379a7cab3.tar.gz | |
cp: change -r to -R, --preserve=all to -p
| -rw-r--r-- | src/nnn.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3083,7 +3083,7 @@ nochange: } if (sel == SEL_CP) - snprintf(g_buf, MAX_CMD_LEN, "xargs -0 -a %s cp -ir --preserve=all -t .", g_cppath); + snprintf(g_buf, MAX_CMD_LEN, "xargs -0 -a %s cp -iRp -t .", g_cppath); else if (sel == SEL_MV) snprintf(g_buf, MAX_CMD_LEN, "xargs -0 -a %s mv -i -t .", g_cppath); else /* SEL_RMMUL */ |