https://github.com/pcj/google-shell
Process runner from the folks at Google (java)
https://github.com/pcj/google-shell
Last synced: over 1 year ago
JSON representation
Process runner from the folks at Google (java)
- Host: GitHub
- URL: https://github.com/pcj/google-shell
- Owner: pcj
- License: apache-2.0
- Created: 2016-12-07T00:01:58.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-12-07T00:09:40.000Z (over 9 years ago)
- Last Synced: 2025-02-01T07:41:23.048Z (over 1 year ago)
- Language: Java
- Homepage: https://pcj.github.io/google-shell/
- Size: 90.8 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# google-shell [](https://travis-ci.org/pcj/google-shell)

Google
Shell
This is the command-line process runner from the
[Bazel Project](http://bazel.build). The
`com.google.devtools.build.lib.shell` package has been split out into
a separate jar for general utility.
# Installation
Bazel
```python
git_repository(
name = "com_github_pcj_google_shell",
remote = "https://github.com/pcj/google-shell.git",
commit = "HEAD", # replace with actual sha1
)
bind(
name = "google_shell",
actual = "@com_github_pcj_google_shell//src/main/java/com/google/devtools/build/lib/shell",
)
```
Maven/Gradle/...
> Note: *the maven artifact is not yet available*.
```markup
com.github.pcj
google-shell
1.0.0
```
# Usage
Please consult the
[source code](src/main/java/com/google/devtools/build/lib/shell/) for
more detailed information.