Constant thwack::HELP

source ·
pub const HELP: &str = "thwack
Find a file and open it with an arbitrary command.

USAGE:
    thwack [OPTIONS] [--] [query]

ARGS:
    <query>                   The name of the file you'd like to find

OPTIONS:
    --exec <COMMAND>          Change the execution command from the default.
                              This is run when you hit the Enter on a path.
                              The default command is \"notepad\" on Windows, or \"cat\" on other platforms.
    --log-file <PATH>         Log what the program is doing to the specified PATH.
                              Log information is not output by default.
    --starting-point <PATH>   Change the starting point from the default (\".\").
    --status-line <TYPE>      Change the information on the status line.
                              The possible values are \"absolute\", \"relative\", and \"none.\"
                              The default is \"absolute.\"
    --no-gitignore            Do not respect .gitignore and search all paths including Git ignored paths.
    -h, --help                Prints help information.
    -v, --version             Prints version info and exit

ENVIRONMENT VARIABLES:
    THWACK_EXEC               The command to use when you hit the Enter key.
                              This affects the same way as \"--exec\".
                              If both are set, the value of \"--exec\" takes precedence.
    THWACK_LOG_FILE           The path to the file to log to.
                              This affects the same way as \"--log-file\".
                              If both are set, the value of \"--log-file\" takes precedence.
";