Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rapid-spring(6) [debian man page]

RAPID(6)							       Games								  RAPID(6)

NAME
rapid - content download tool for spring SYNOPSIS
rapid [options] <action> [<argument>] rapid-spring [options] <action> [<argument>] DESCRIPTION
Rapid manages downloads of content for the spring RTS engine. OPTIONS
action in the command line is one of: upgrade: Install the latest package for all pinned tags. clean-upgrade: Equivalent to 'upgrade' followed by 'uninstall-unpinned'. pin: Pins a tag and installs the latest package for that tag. unpin: Unpins a tag. Does not uninstall any packages. install: Install a package. Does not pin any tags. uninstall: Uninstall a package. Unpin its tag if any. list-tags: List all tags that contain <argument>. list-pinned-tags: Idem, but only pinned tags. list-packages: List all packages whose name contains <argument>. list-installed-packages: Idem, but only installed packages. uninstall-unpinned: Keep only the pinned tags and all dependencies. collect-pool: Remove pool files not needed by any installed package. make-sdd: Extract pool files into a .sdd archive. these are the possible options: -h, --help show this help message and exit --datadir=DATADIR Override the default data directory. (~/.spring on Linux or the one reported by unitsync on Windows) --unitsync Use unitsync to locate the data directory Spring uses. --no-unitsync Do not use unitsync. EXAMPLES
rapid pin xta:latest # installs latest XTA rapid pin s44:latest # installs latest Spring: 1944 rapid upgrade # upgrade all pinned tags SEE ALSO
rapid-gui(6), spring(6) AUTHOR
Tobi Vollebregt <tobivollebregt@gmail.com> This manual page was written by Jan Dittberner <jandd@debian.org>, for the Debian project (but may be used by others). rapid August 2010 RAPID(6)

Check Out this Related Man Page

GO-BUILD(1)						      General Commands Manual						       GO-BUILD(1)

NAME
go - tool for managing Go source code SYNOPSIS
go build [-o output] [ build flags ] [ packages ] DESCRIPTION
Build compiles the packages named by the import paths, along with their dependencies, but it does not install the results. If the arguments are a list of .go files, build treats them as a list of source files specifying a single package. When the command line specifies a single main package, build writes the resulting executable to output. Otherwise build compiles the pack- ages but discards the results, serving only as a check that the packages can be built. The -o flag specifies the output file name. If not specified, the name is packagename.a (for a non-main package) or the base name of the first source file (for a main package). OPTIONS
The build flags are shared by the build, install, run, and test commands: -a force rebuilding of packages that are already up-to-date. -n print the commands but do not run them. -p n the number of builds that can be run in parallel. The default is the number of CPUs available. -v print the names of packages as they are compiled. -work print the name of the temporary work directory and do not delete it when exiting. -x print the commands. -compiler name name of compiler to use, as in runtime.Compiler (gccgo or gc) -gccgoflags 'arg list' arguments to pass on each gccgo compiler/linker invocation -gcflags 'arg list' arguments to pass on each 5g, 6g, or 8g compiler invocation -ldflags 'flag list' arguments to pass on each 5l, 6l, or 8l linker invocation -tags 'tag list' a list of build tags to consider satisfied during the build. See the documentation for the go/build package for more information about build tags. For more about specifying packages, see go-packages(7). For more about where packages and binaries are installed, see go-gopath(1). SEE ALSO
go-install(1), go-get(1), go-clean(1). AUTHOR
This manual page was written by Michael Stapelberg <stapelberg@debian.org>, for the Debian project (and may be used by others). 2012-05-13 GO-BUILD(1)
Man Page