#!/usr/pkg/bin/python3.11
import sys, os;
exe = os.path.realpath(os.path.abspath(sys.argv[0]))
exedir = os.path.dirname(exe)
sys.path.insert(0, os.path.join(exedir, '../lib'))
sys.path.insert(0, os.path.join(exedir, '..'))
import redo.title
import redo.cmd_whichdo
redo.title.auto()
redo.cmd_whichdo.main()
