Merge pull request #325 from KlzXS/awk

Replacing last occurance of 'awk'
This commit is contained in:
Mischievous Meerkat 2019-08-15 19:06:28 +05:30 committed by GitHub
commit 2ee3b74b31
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1216,7 +1216,7 @@ static bool batch_rename(const char *path)
int fd1, fd2, i;
uint count = 0, lines = 0;
bool dir = FALSE, ret = FALSE;
const char renamecmd[] = "awk 'FNR==NR{a[NR]=$0} a[FNR]!=$0{printf \"%%s\\0%%s\\0\",a[FNR],$0}' %s %s | xargs -0 -n2 mv 2>/dev/null";
const char renamecmd[] = "paste -d'\n' %s %s | sed 'N; /^\\(.*\\)\\n\\1$/!p;d' | tr '\n' '\\0' | xargs -0 -n2 mv 2>/dev/null";
char foriginal[TMP_LEN_MAX] = {0};
char buf[sizeof(renamecmd) + (PATH_MAX << 1)];