btrfs-progs: reflink: convert help text to option formatter

Signed-off-by: David Sterba <dsterba@suse.com>
This commit is contained in:
David Sterba 2023-02-22 01:37:18 +01:00
parent 0a09370313
commit e9614be78e

View File

@ -38,9 +38,10 @@ static const char * const cmd_reflink_clone_usage[] = {
"Lightweight file copy, extents are cloned and COW if changed. Multiple", "Lightweight file copy, extents are cloned and COW if changed. Multiple",
"ranges can be specified, source and target file can be the same,", "ranges can be specified, source and target file can be the same,",
"ranges can be combined from both and processed in the order.", "ranges can be combined from both and processed in the order.",
"",
"Options:", "Options:",
" -s RANGESPEC take range spec from the source file", OPTLINE("-s RANGESPEC", "take range spec from the source file"),
" -t RANGESPEC take range from the target file", OPTLINE("-t RANGESPEC", "take range from the target file"),
"", "",
"RANGESPEC has three parts and is of format SRCOFF:LENGTH:DESTOFF,", "RANGESPEC has three parts and is of format SRCOFF:LENGTH:DESTOFF,",
"where SRCOFF is offset in the respective file, LENGTH is range length,", "where SRCOFF is offset in the respective file, LENGTH is range length,",