]> git.e2factory.org Git - e2factory.git/commitdiff
Add doc hint to mv and cp functions
authorTobias Ulmer <tu@emlix.com>
Tue, 19 Nov 2013 18:23:06 +0000 (19:23 +0100)
committerTobias Ulmer <tu@emlix.com>
Wed, 16 Nov 2016 14:41:17 +0000 (15:41 +0100)
Signed-off-by: Tobias Ulmer <tu@emlix.com>
generic/e2lib.lua

index 7d7fbf5d906cde3093be72829fafa2d232ff19b6..b6b07f5ee3eeb4a18d87b7e67d3df7b7cac73223 100644 (file)
@@ -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.