#!/usr/bin/env python
"""Run Trashman."""
import trashman.main
try:
    trashman.main.main()
except KeyboardInterrupt:
    exit(0)
