X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=usage.go;h=f14ad7edbad9005cbec851e09f9725fab65d1146;hb=6dce71355599d4caf8267f6f02520037480f7ba3;hp=a4db6e444ad8c38cd81a85510171c62d4f6ec7ca;hpb=630b0f862b0105ca934d97f8b8d655818c32c9ed;p=goredo.git diff --git a/usage.go b/usage.go index a4db6e4..f14ad7e 100644 --- a/usage.go +++ b/usage.go @@ -1,6 +1,6 @@ /* goredo -- djb's redo implementation on pure Go -Copyright (C) 2020-2022 Sergey Matveev +Copyright (C) 2020-2023 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -24,8 +24,8 @@ import ( ) const ( - Version = "1.27.1" - Warranty = `Copyright (C) 2020-2022 Sergey Matveev + Version = "2.0.0" + Warranty = `Copyright (C) 2020-2023 Sergey Matveev This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -62,10 +62,10 @@ Record ifcreate dependency for current target. Unusable outside .do.` Always build current target. Unusable outside .do.` case CmdNameRedoCleanup: - d = `Usage: redo-cleanup [-n] {full,log,tmp} [...] + d = `Usage: redo-cleanup [-n] {full,log,lock,tmp} [...] -Remove either all goredo's related temporary files, or kept stderr -logs, or everything (including .redo directories) related.` +Remove either all of goredo's related temporary files, or kept stderr +logs, or lock files, or everything (including .redo directories) related.` case CmdNameRedoLog: d = `Usage: redo-log [-c] [-r] target [ | tai64nlocal ] @@ -108,15 +108,21 @@ List all targets that will be affected by changing the specified ones.` case CmdNameRedoDepFix: d = `Usage: redo-depfix -Traverse over all .redo directories beneath and check if inode's information -(ctime/mtime) differs. Update dependency if file's content is still the same.` +Traverse over all .redo directories beneath and recalculate each target's +inode and hash information, rewriting dependency files. If dependency has +legacy .rec format, then it will be converted to .dep one.` + case CmdNameRedoInode: + d = `Usage: redo-inode target [...] + +Just calculate inode information about each target and print in recfile format.` default: d = `Usage: goredo -symlinks goredo expects to be called through the symbolic link to it. Available commands: redo, redo-affects, redo-always, redo-cleanup, -redo-depfix, redo-dot, redo-ifchange, redo-ifcreate, redo-log, -redo-ood, redo-sources, redo-stamp, redo-targets, redo-whichdo.` +redo-dep2rec, redo-depfix, redo-dot, redo-ifchange, redo-ifcreate, +redo-inode, redo-log, redo-ood, redo-sources, redo-stamp, +redo-targets, redo-whichdo.` } fmt.Fprintf(os.Stderr, "%s\n\nCommon options:\n", d) flag.PrintDefaults()