Created
January 9, 2013 22:25
-
-
Save ahonor/4497568 to your computer and use it in GitHub Desktop.
rerun archive calling commands
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ rerun stubbs:add-module --module blar | |
| $ rerun stubbs: add-command --module blar --command hi | |
| $ rerun stubbs: add-command --module blar --command bye | |
| $ vi /Users/alexh/rerun-workspace/rerun/modules/blar/commands/hi/script | |
| $ vi /Users/alexh/rerun-workspace/rerun/modules/blar/commands/bye/script | |
| $ rerun stubbs: add-command --module blar --command hi-bye | |
| $ vi /Users/alexh/rerun-workspace/rerun/modules/blar/commands/hi-bye/script | |
| $ rerun stubbs: archive --modules blar | |
| Wrote self extracting archive script: /Users/alexh/rerun-workspace/rerun/rerun.bin | |
| $ rerun.bin blar: hi | |
| hi | |
| $ rerun.bin blar: bye | |
| bye | |
| $ rerun.bin blar: hi-bye | |
| hi | |
| bye |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment