Displaying 1 result from an estimated 1 matches for "cmd_send_usag".
Did you mean:
cmd_send_usage
2013 Apr 10
0
[PATCH] Btrfs-progs: add send option for using new end-cmd semantic
...new kernel */
+ is_first_subvol = 1;
+ is_last_subvol = 1;
+ }
+ ret = do_send(&send, root_id, parent_root_id,
+ is_first_subvol, is_last_subvol);
if (ret < 0)
goto out;
@@ -648,7 +673,7 @@ static const char * const send_cmd_group_usage[] = {
};
const char * const cmd_send_usage[] = {
- "btrfs send [-v] [-p <parent>] [-c <clone-src>] <subvol>",
+ "btrfs send [-ve] [-p <parent>] [-c <clone-src>] <subvol>",
"Send the subvolume to stdout.",
"Sends the subvolume specified by <subvol> to stdout.&q...