Sha256: a5d57c5632b361ced2ca91d4310ae5180d7ff74ca034aa426dae95969a22fbe3

Contents?: true

Size: 960 Bytes

Versions: 1

Compression:

Stored size: 960 Bytes

Contents

Termup
======

Initialize your terminal tabs with preset commands.

Compatible with Terminal.app on Mac OS X 10.6 and Ruby 1.9.2.

Installation
------------

    $ gem install termup

Usage
-----

#### Getting Started ####

Call the following command:

    $ termup create new_project

This will create a new project at `~/.config/termup/new_project.yml`. Edit the file:

    $ termup edit new_project

And now you're good to go:

    $ termup start new_project

#### YAML Syntax ####

    # ~/.config/termup/new_project.yml
    ---
    - tab1:
      - cd ~/foo/bar
      - git status
    - tab2:
      - mysql -u root
      - show databases;
    - tab3: echo "hello world"
    - tab4:
      - cd ~/foo/project
      - autotest

Tabs can contain a single command, or YAML arrays to execute multiple commands.

#### Shortcut ####

Commands have a shortcut for even fewer keystrokes.

    $ termup s new_project

That's equivalent to `termup start new_project`.

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
termup-1.0.1 README.md