mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 04:02:09 +02:00

* pages*: fix Python, Java, pacman, apt, *zip*, xz, tar, git, RPM and grep names * pages*: fix brand and technical names Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> * fluxctl, gitmoji, in-toto-run, osv-scanner: replace `git` with Git * bzegrep: enclose egrep with backticks Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * git-bug: use Git instead of `git` Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * git-bug: use Git instead of `git` Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * git-force-clone: use Git instead of `git` Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * gitwatch: use Git instead of `git` Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * hub-init: use Git instead of `git` Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com> * pages.*: use Linux instead of GNU/Linux --------- Co-authored-by: Lena <126529524+acuteenvy@users.noreply.github.com> Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
36 lines
939 B
Markdown
36 lines
939 B
Markdown
# cs install
|
|
|
|
> Install an application in the installation directory onfigured when installing `cs` (to enable the binary to be loaded add to your `.bash_profile` the `$ eval "$(cs install --env)"` command).
|
|
> More information: <https://get-coursier.io/docs/cli-install>.
|
|
|
|
- Install a specific application:
|
|
|
|
`cs install {{application_name}}`
|
|
|
|
- Install a specific version of an application:
|
|
|
|
`cs install {{application_name}}:{{application_version}}`
|
|
|
|
- Search an application by a specific name:
|
|
|
|
`cs search {{application_partial_name}}`
|
|
|
|
- Update a specific application if available:
|
|
|
|
`cs update {{application_name}}`
|
|
|
|
- Update all the installed applications:
|
|
|
|
`cs update`
|
|
|
|
- Uninstall a specific application:
|
|
|
|
`cs uninstall {{application_name}}`
|
|
|
|
- List all installed applications:
|
|
|
|
`cs list`
|
|
|
|
- Pass specific Java options to an installed application:
|
|
|
|
`{{application_name}} {{-Jjava_option_name1=value1 -Jjava_option_name2=value2 ...}}`
|