Ethan Dalool
4a9051e617
With pathclass.glob_many, we can clean up and feel more confident about many programs that use pipeable to take glob patterns. Added return 0 to all programs that didn't have it, so we have consistent and explicit command line return values. Other linting and whitespace.
19 lines
510 B
Python
19 lines
510 B
Python
import os
|
|
import shutil
|
|
import sys
|
|
|
|
from voussoirkit import pathclass
|
|
from voussoirkit import pipeable
|
|
|
|
def main(argv):
|
|
for path in pathclass.glob_many(pipeable.go(argv, skip_blank=True)):
|
|
if path.is_file:
|
|
pipeable.stdout(path.absolute_path)
|
|
os.remove(path.absolute_path)
|
|
elif path.is_dir:
|
|
pipeable.stdout(path.absolute_path)
|
|
shutil.rmtree(path.absolute_path)
|
|
return 0
|
|
|
|
if __name__ == '__main__':
|
|
raise SystemExit(main(sys.argv[1:]))
|