package b0
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
Software construction and deployment kit
Install
dune-project
Dependency
Authors
Maintainers
Sources
b0-0.0.5.tbz
sha512=00a6868b4dfa34565d0141b335622a81a0e8d5b9e3c6dfad025dabfa3df2db2a1302b492953bbbce30c3a4406c324fcec25250a00b38f6d18a69e15605e3b07e
doc/b0_b00_kit/B00_rsync/index.html
Module B00_rsync
rsync support.
val get_cmd :
?search:B0_std.Fpath.t list ->
?cmd:B0_std.Cmd.t ->
unit ->
(B0_std.Cmd.t, string) Stdlib.resultget_cmd () looks for rsync with B0_std.Os.Cmd.get.
val copy :
?opts:B0_std.Cmd.t ->
?stats:bool ->
?progress:bool ->
delete:bool ->
?src_host:string ->
src:B0_std.Fpath.t ->
?dst_host:string ->
B0_std.Fpath.t ->
(unit, string) Stdlib.resultcopy ~src dst copies the contents of directory src to dst with rsync. As per rsync semantics, directoryness of src is important (dst's one is not):
- If
srchas a trailing directory separator, the contentssrc/*is copied todst/*. - If
srchas no trailing directory separator, the contents ofsrc/*is copied todst/$(basename src)/*.
src_host and dst_host specify the host for source and destination directory (e.g. "myhost:"). They default to "".
If delete is true, deletes files at destination that do not exist in src. If stats is true (default to false) outputs statistics about the transfer. If progress is true (default) outputs progress about the transfer. opts defaults to -azh, this means transfer in archive mode which preserves symlinks and file attributes and compression is enabled.
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>