MacOS support for archive_selection()

This commit is contained in:
0xACE 2019-08-04 02:49:48 +02:00
parent 30651d16d7
commit 2baa42b877
1 changed files with 3 additions and 0 deletions

View File

@ -1303,6 +1303,9 @@ static void archive_selection(const char *cmd, const char *archive, const char *
snprintf(buf, CMD_LEN_MAX,
#ifdef __linux__
"sed -ze 's|^%s/||' '%s' | xargs -0 %s %s", curpath, g_cppath, cmd, archive);
#elif defined __APPLE__
"cat '%s' | tr '\\0' '\n' | sed -e 's|^%s/||' | tr '\n' '\\0' | xargs -0 %s %s",
g_cppath, curpath, cmd, archive);
#else
"cat %s | xargs -0 -o %s %s", g_cppath, cmd, archive);
#endif