OILS / devtools / services / asciinema.sh View on Github | oilshell.org

24 lines, 6 significant
1#!/usr/bin/env bash
2#
3# Usage:
4# devtools/services/asciinema.sh <function name>
5
6set -o nounset
7set -o pipefail
8set -o errexit
9
10install() {
11 sudo apt-get install asciinema
12}
13
14
15#
16# Instructions:
17#
18# 'asciinema rec' to record interactively
19# 'asciinema auth' to be able to delete/rename uploaded recordings
20#
21# https://asciinema.org/~andyc
22#
23
24"$@"