An open API service indexing awesome lists of open source software.

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)

Awesome Lists containing this project

README

          

# google-shell [![Build Status](https://travis-ci.org/pcj/google-shell.svg?branch=master)](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.