mirror of
https://github.com/jarun/nnn.git
synced 2024-11-04 18:33:12 +00:00
Fix #143
This commit is contained in:
parent
ab61bb03d0
commit
70d371c214
|
@ -3085,11 +3085,11 @@ nochange:
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sel == SEL_CP)
|
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, "cat %s | xargs -0 cp -ir --preserve=all -t .", g_cppath);
|
||||||
else if (sel == SEL_MV)
|
else if (sel == SEL_MV)
|
||||||
snprintf(g_buf, MAX_CMD_LEN, "xargs -0 -a %s mv -i -t .", g_cppath);
|
snprintf(g_buf, MAX_CMD_LEN, "cat %s | xargs -0 mv -i -t .", g_cppath);
|
||||||
else /* SEL_RMMUL */
|
else /* SEL_RMMUL */
|
||||||
snprintf(g_buf, MAX_CMD_LEN, "xargs -0 -a %s rm -Ir", g_cppath);
|
snprintf(g_buf, MAX_CMD_LEN, "cat %s | xargs -0 rm -Ir", g_cppath);
|
||||||
|
|
||||||
spawn("sh", "-c", g_buf, path, F_NORMAL | F_SIGINT);
|
spawn("sh", "-c", g_buf, path, F_NORMAL | F_SIGINT);
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue