Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

remove-metadata.py
import sys

input = open(sys.argv[1], "r")
for line in input:
  if "!interesting" in line:
    sys.exit(0)

sys.exit(1)