From: Tobias Ulmer Date: Tue, 19 Nov 2013 18:23:06 +0000 (+0100) Subject: Add doc hint to mv and cp functions X-Git-Tag: e2factory-2.3.15rc1~369 X-Git-Url: https://git.e2factory.org/?a=commitdiff_plain;h=15fbe8bdf5b5ac32fb094e00036165013120e43f;p=e2factory.git Add doc hint to mv and cp functions Signed-off-by: Tobias Ulmer --- diff --git a/generic/e2lib.lua b/generic/e2lib.lua index 7d7fbf5..b6b07f5 100644 --- a/generic/e2lib.lua +++ b/generic/e2lib.lua @@ -2054,7 +2054,7 @@ function e2lib.closefrom(fd) return true end ---- call the mv command +--- Call the mv command. For more defails see mv(1). -- @param src string: source name -- @param dst string: destination name -- @return bool @@ -2066,7 +2066,7 @@ function e2lib.mv(src, dst) return e2lib.call_tool_argv("mv", { src, dst }) end ---- Call the cp command. +--- Call the cp command. For more details, see cp(1) -- @param src string: source name -- @param dst string: destination name -- @param recursive True enables recursive copying. The default is false.