22
33## Chapters
44
5- Generate OBS scenes from chapter markers for easier setup of run lists.# deleterious
6- Helps you clean up AWS resources. This is handy when
7- retention policies on CloudFormation stacks leave lots
8- of orphaned AWS resources around costing money.
5+ Generate OBS scenes from chapter markers for easier setup of run lists.
96
107## installation for homebrew (MacOS/Linux)
118
12- brew install kindlyops/tap/deleterious
9+ brew install kindlyops/tap/vbs
1310
1411once installed, you can upgrade to a newer version using this command:
1512
16- brew upgrade kindlyops/tap/deleterious
13+ brew upgrade kindlyops/tap/vbs
1714
1815## installation for scoop (Windows Powershell)
1916
@@ -23,56 +20,22 @@ To enable the bucket for your scoop installation
2320
2421To install deleterious
2522
26- scoop install deleterious
23+ scoop install vbs
2724
2825once installed, you can upgrade to a newer version using this command:
2926
3027 scoop status
31- scoop update deleterious
28+ scoop update vbs
3229
3330## installation from source
3431
35- go get github.com/kindlyops/deleterious
36- deleterious help
32+ go get github.com/kindlyops/vbs
33+ vbs help
3734
38- ## Example of deleting DynamoDB tables
39-
40- Once deleterious gives you a list of things to delete, and
41- you have manually confirmed they are ok to delete, you
42- can make a little loop to delete the objects. Here is an example with dynamoDB tables
43-
44- ``` bash
45- #! /bin/bash
46-
47- # tables that need to be deleted
48- declare -a tables=(" foo-MonkeyTable-1FDTVGZJOT25Y"
49- " foo-BananaTable-1HFLQZL7CVQ7L"
50- )
51-
52- for i in " ${tables[@]} " ; do
53- echo " deleting table: $i "
54- aws dynamodb delete-table --table-name " $i "
55- done
56- ```
57-
58- ## Example of deleting S3 buckets
59-
60- Once deleterious gives you a list of things to delete, and
61- you have manually confirmed they are ok to delete, you
62- can make a little loop to delete the objects. Here is an example with S3 buckets
35+ ## Example of listing chapters from video file
6336
6437``` bash
65- #! /bin/bash
66-
67- # buckets that need to be deleted
68- declare -a buckets=(" foo-bananabucket-148lv5q85e3dc"
69- " foo-bananabucket-14bh2oapj6a3e"
70- )
71-
72- for i in " ${buckets[@]} " ; do
73- echo " deleting bucket: $i "
74- aws s3api delete-bucket --bucket " $i "
75- done
38+ vbs chapterlist file.mp4
7639```
7740
7841## Testing release process
0 commit comments