This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python3 | |
| from argparse import ArgumentParser | |
| from os import listdir, stat | |
| from os.path import sep as pathsep | |
| from glob import glob | |
| from shutil import SameFileError, copy, get_terminal_size | |
| from typing import Union | |
| from sys import exit, stdout | |
| from alive_progress import alive_bar | |
| from concurrent.futures import ProcessPoolExecutor, as_completed |