2
0
mirror of https://github.com/meganz/MEGAcmd synced 2025-08-31 05:45:11 +00:00

Change docs to reflect that mount ID is not alphanumeric

This commit is contained in:
Diego Ximenez
2025-03-13 14:06:11 +01:00
parent edf506f828
commit 610a9407fe
6 changed files with 12 additions and 12 deletions

View File

@@ -5,7 +5,7 @@ Usage: `fuse-config [--name=name] [--enable-at-startup=yes|no] [--persistent=yes
<pre>
Parameters:
ID|localPath|name The identifier of the mount we want to configure. It can be one of the following:
ID: The unique alphanumeric string that identifies the mount.
ID: The unique identifier for the mount.
Local path: The local mount point in the filesystem.
Name: the user-friendly name of the mount, set when it was added or by fuse-config.

View File

@@ -7,7 +7,7 @@ After a mount has been disabled, its cloud entities will no longer be accessible
Parameters:
ID|localPath|name The identifier of the mount we want to disable. It can be one of the following:
ID: The unique alphanumeric string that identifies the mount.
ID: The unique identifier for the mount.
Local path: The local mount point in the filesystem.
Name: the user-friendly name of the mount, set when it was added or by fuse-config.
Options:

View File

@@ -7,7 +7,7 @@ After a mount has been enabled, its cloud entities will be accessible via the mo
Parameters:
ID|localPath|name The identifier of the mount we want to enable. It can be one of the following:
ID: The unique alphanumeric string that identifies the mount.
ID: The unique identifier for the mount.
Local path: The local mount point in the filesystem.
Name: the user-friendly name of the mount, set when it was added or by fuse-config.

View File

@@ -7,7 +7,7 @@ A mount must be disabled before it can be removed. See fuse-disable.
Parameters:
ID|localPath|name The identifier of the mount we want to remove. It can be one of the following:
ID: The unique alphanumeric string that identifies the mount.
ID: The unique identifier for the mount.
Local path: The local mount point in the filesystem.
Name: the user-friendly name of the mount, specified when it was added or by fuse-config.

View File

@@ -4,7 +4,7 @@ Displays the list of FUSE mounts and their information. If an ID, local path, or
Usage: `fuse-show [--only-enabled] [--disable-path-collapse] [[--limit=rowcount] | [ID|localPath|name]]`
<pre>
When all mounts are shown, the following columns are displayed:
MOUNT_ID: The unique alphanumeric string that identifies the mount.
MOUNT_ID: The unique identifier for the mount.
LOCAL_PATH: The local mount point in the filesystem.
REMOTE_PATH: The cloud directory or share that is exposed locally.
NAME: The user-friendly name of the mount, specified when it was added or by fuse-config.
@@ -13,7 +13,7 @@ When all mounts are shown, the following columns are displayed:
Parameters:
ID|localPath|name The identifier of the mount we want to show. It can be one of the following:
ID: The unique alphanumeric string that identifies the mount.
ID: The unique identifier for the mount.
Local path: The local mount point in the filesystem.
Name: the user-friendly name of the mount, set when it was added or by fuse-config.
If not provided, the list of mounts will be shown instead.

View File

@@ -3188,7 +3188,7 @@ string getHelpStr(const char *command, const HelpFlags& flags = {})
os << endl;
os << "Parameters:" << endl;
os << "ID|localPath|name The identifier of the mount we want to remove. It can be one of the following:" << endl;
os << " ID: The unique alphanumeric string that identifies the mount." << endl;
os << " ID: The unique identifier for the mount." << endl;
os << " Local path: The local mount point in the filesystem." << endl;
os << " Name: the user-friendly name of the mount, specified when it was added or by fuse-config." << endl;
os << endl;
@@ -3202,7 +3202,7 @@ string getHelpStr(const char *command, const HelpFlags& flags = {})
os << endl;
os << "Parameters:" << endl;
os << "ID|localPath|name The identifier of the mount we want to enable. It can be one of the following:" << endl;
os << " ID: The unique alphanumeric string that identifies the mount." << endl;
os << " ID: The unique identifier for the mount." << endl;
os << " Local path: The local mount point in the filesystem." << endl;
os << " Name: the user-friendly name of the mount, set when it was added or by fuse-config." << endl;
os << endl;
@@ -3220,7 +3220,7 @@ string getHelpStr(const char *command, const HelpFlags& flags = {})
os << endl;
os << "Parameters:" << endl;
os << "ID|localPath|name The identifier of the mount we want to disable. It can be one of the following:" << endl;
os << " ID: The unique alphanumeric string that identifies the mount." << endl;
os << " ID: The unique identifier for the mount." << endl;
os << " Local path: The local mount point in the filesystem." << endl;
os << " Name: the user-friendly name of the mount, set when it was added or by fuse-config." << endl;
os << "Options:" << endl;
@@ -3234,7 +3234,7 @@ string getHelpStr(const char *command, const HelpFlags& flags = {})
os << "Displays the list of FUSE mounts and their information. If an ID, local path, or name is provided, displays information of that mount instead." << endl;
os << endl;
os << "When all mounts are shown, the following columns are displayed:" << endl;
os << " MOUNT_ID: The unique alphanumeric string that identifies the mount." << endl;
os << " MOUNT_ID: The unique identifier for the mount." << endl;
os << " LOCAL_PATH: The local mount point in the filesystem." << endl;
os << " REMOTE_PATH: The cloud directory or share that is exposed locally." << endl;
os << " NAME: The user-friendly name of the mount, specified when it was added or by fuse-config." << endl;
@@ -3243,7 +3243,7 @@ string getHelpStr(const char *command, const HelpFlags& flags = {})
os << endl;
os << "Parameters:" << endl;
os << "ID|localPath|name The identifier of the mount we want to show. It can be one of the following:" << endl;
os << " ID: The unique alphanumeric string that identifies the mount." << endl;
os << " ID: The unique identifier for the mount." << endl;
os << " Local path: The local mount point in the filesystem." << endl;
os << " Name: the user-friendly name of the mount, set when it was added or by fuse-config." << endl;
os << " If not provided, the list of mounts will be shown instead." << endl;
@@ -3262,7 +3262,7 @@ string getHelpStr(const char *command, const HelpFlags& flags = {})
os << endl;
os << "Parameters:" << endl;
os << "ID|localPath|name The identifier of the mount we want to configure. It can be one of the following:" << endl;
os << " ID: The unique alphanumeric string that identifies the mount." << endl;
os << " ID: The unique identifier for the mount." << endl;
os << " Local path: The local mount point in the filesystem." << endl;
os << " Name: the user-friendly name of the mount, set when it was added or by fuse-config." << endl;
os << endl;