Fork channel

Create a new channel as a copy of main.

Rename channel

Rename main to:

Delete channel

Delete main? This cannot be undone.

write-control-chars.py
#!/usr/bin/env python

from __future__ import print_function
import sys

print("a line with \x1b[2;30;41mcontrol characters\x1b[0m.")
sys.exit(1)