launch

Version, currently master branch1 version
  • master branchlatestAug 1, 2019

github.com/dscottboggs/launch

Spawn a series of comma-separated commands and ignore their output.

0 stars
0 dependents
License: MIT

Installation

# Add this to your shard.yml
dependencies:
  launch:
    github: dscottboggs/launch
    branch: master

master is a branch, not a release, so this tracks it rather than pinning a version.

Then run:

shards install

shard.yml

Crystal
0.29.0
License
MIT
Author
Scott Boggs
Target
  • launch from src/bin.cr

Dependencies

This version declares no dependencies.

README

launch

A quick upgrade to a shell function -- launch a bunch of processes in the background, ignoring their output. I use this in a VM on a local system via ssh -X for launching Chromium and other GUI apps.

Installation

Download the binary.

Usage

At a command line, type "launch" followed by a series of comma-separated commands. For example,

launch chromium-browser https://crystal-lang.org/api/latest, gvim src/launch.cr

would launch Chromium and open it to the Crystal docs, and open gvim on the source file. Note the position of the comma.

Compiling From Source

  • Have crystal installed
  • Clone the repo, or a fork
  • From the repository directory, run shards build

Contributing

  1. Fork it (https://github.com/dscottboggs/launch/fork)
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

Contributors