LinuxCommandLibrary

gow

Browse remote Go documentation

TLDR

Start and watch the current directory

$ gow run .
copy

Start the application with the specified arguments
$ gow run . [argument1 argument2 ...]
copy

Watch subdirectories in verbose mode
$ gow -v -w=[path/to/directory1,path/to/directory2,...] run .
copy

Watch the specified file extensions
$ gow -e=[go,html] run .
copy

Display help
$ gow -h
copy

SYNOPSIS

gow [options] command | file(s)

PARAMETERS

-i, --interval
    Sets the update interval for watching, specified in seconds. Defines how often the command is re-executed or files are re-checked.

-f, --filter
    Filters the output using a regular expression pattern. Only lines matching the pattern would be displayed.

-t, --transform