2020-12-06 23:02:56 +00:00
|
|
|
import os
|
|
|
|
import shutil
|
2021-09-24 06:42:34 +00:00
|
|
|
import sys
|
2020-12-06 23:02:56 +00:00
|
|
|
|
2021-09-24 06:42:34 +00:00
|
|
|
from voussoirkit import pathclass
|
2020-12-06 23:02:56 +00:00
|
|
|
from voussoirkit import pipeable
|
|
|
|
|
2021-09-24 06:42:34 +00:00
|
|
|
def main(argv):
|
|
|
|
for path in pathclass.glob_many(pipeable.go(argv, skip_blank=True)):
|
|
|
|
if path.is_file:
|
|
|
|
pipeable.stdout(path.absolute_path)
|
2021-12-03 03:34:28 +00:00
|
|
|
os.remove(path)
|
2021-09-24 06:42:34 +00:00
|
|
|
elif path.is_dir:
|
|
|
|
pipeable.stdout(path.absolute_path)
|
2021-12-03 03:34:28 +00:00
|
|
|
shutil.rmtree(path)
|
2021-09-24 06:42:34 +00:00
|
|
|
return 0
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
raise SystemExit(main(sys.argv[1:]))
|