List open locations from active contexts in help

This commit is contained in:
Arun Prakash Jana 2021-08-07 23:49:21 +05:30
parent 87380732dc
commit 7d17cf3f63
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 5 additions and 0 deletions

View File

@ -4963,6 +4963,11 @@ static void show_help(const char *path)
++end;
}
dprintf(fd, "\nLOCATIONS:\n");
for (uchar_t i = 0; i < CTX_MAX; ++i)
if (g_ctx[i].c_cfg.ctxactive)
dprintf(fd, " %u: %s\n", i + 1, g_ctx[i].c_path);
dprintf(fd, "\nVOLUME: %s of ", coolsize(get_fs_info(path, FREE)));
dprintf(fd, "%s free\n\n", coolsize(get_fs_info(path, CAPACITY)));