#! /usr/bin/python3 -sP
import sys
from jupyter_cache.cli.commands.cmd_main import jcache
if __name__ == '__main__':
    sys.argv[0] = sys.argv[0].removesuffix('.exe')
    sys.exit(jcache())
