Skip to content

Instantly share code, notes, and snippets.

@xverges
Created September 12, 2021 18:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xverges/44f2e4eebb48b00c0a7f96f40c09f6ac to your computer and use it in GitHub Desktop.
Save xverges/44f2e4eebb48b00c0a7f96f40c09f6ac to your computer and use it in GitHub Desktop.
Start my tiddlywiki+other tools
#!/bin/bash
# Bash "strict mode", to help catch problems and bugs in the shell
# script. Every bash script you write should include this. See
# http://redsymbol.net/articles/unofficial-bash-strict-mode/ for
# details.
set -euo pipefail
# This works:
# clear; echo Press a key to start, ^C to break; read -rsn 1; echo LONG TASK
ttab -d ~/main/tw/tw-run 'tabset tw.run; clear; npm start'
ttab -d ~/main/tw/notebook 'tabset tw.git; clear; git status'
# ttab -d ~/main/tools/hound 'tabset hound; clear; docker run --rm -p 6080:6080 --name hound -v $(pwd):/data etsy/hound'
# ttab 'tabset dynamodb-admin; clear; DYNAMO_ENDPOINT=http://localhost:4566 dynamodb-admin'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment