stask

command module
v0.0.0-...-6913c21 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Nov 28, 2023 License: MIT Imports: 9 Imported by: 0

README

stask

stateful task running utility

I built this because my company's build system has a number of commands with a bunch of flags. The flags stay the same between commands depending on which flavor of the build you are currently using. I was tired of having to edit multiple commands in my shell history, so I made stask.

Update: added stask profile subcommand! See below for more information

Install

stask is not on any package manager for the moment. The best way to install it is to use go install

Requirement: make sure go is installed (use your favourite package manager, or the official instructions)

Make sure $GOPATH/bin is on your PATH (note, use the default GOPATH if it is not set: $HOME/go)

Install stask: go install github.com/itsFrank/stask

Usage

Everything you need should be in the helptext: stask help. If you rather markdown, or aren't convinced yet, the basic workflow is outlined below.

First, make a your staskfile: stask init

Add some tasks to your staskfile with your favorite text editor (get its path with stask staskfile):

{
  "Tasks": {
    "echo": "echo {message}",
    "cp": "cp {from} {to}"
  },
  "State": {}
}

Set some state

> stask set message "hello from stask!"
> stask set from ~/myfile
> stask set to ~/myfile_copy

Run tasks!

> stask run echo
hello from stask

> stask dryrun cp #dryrun prints the command instead of executing it
cp ~/myfile ~/myfile_copy

new! Save and load profiles!

> stask set name Frank
> stask profile save frank
profile 'frank' saved sucessfully

> stask set name Joe
> stask run greet
hello Joe!

> stask profile load frank
frank - applying profile...
    name : Joe -> Frank

> stask run greet
hello Frank!

Commands

stask has a bunch of commands, here is the list from the help text

commands:
    help        show help for a command or topic
    init        create a default staskfile
    state       print current stored state
    set         set a value to state
    clear       remove a value from state
    run         run a command with state
    dryrun      print command with state inserted
    tasks       show list of available tasks
    profile     list, show, load, save, delete profiles
    staskfile   print path to your staskfile

use stask help <command> for more information about any command

Shell

stask requires that a shell be set via environment variables, on unix systems this is typically set by default so no extra config should be necessary. However if you wish to customize the shell used by stask (or troubleshoot errors) here is how stask determines the shell

Shell env vars:

  • STASK_SHELL: if set will use this shell
  • SHELL: if STASK_SHELL is not set, will look for this var

stask also passes flags to the shell, by default it passes -ic. If those flags don't work or you want to customize them, you can override them by setting STASK_SHELL_FLAGS

Documentation

The Go Gopher

There is no documentation for this package.

Directories

Path Synopsis
internal
jsonerror
adapted from: https://adrianhesketh.com/2017/03/18/getting-line-and-character-positions-from-gos-json-unmarshal-errors
adapted from: https://adrianhesketh.com/2017/03/18/getting-line-and-character-positions-from-gos-json-unmarshal-errors

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL