cmd/recycle.py

20 lines
542 B
Python
Raw Normal View History

2020-08-11 03:51:51 +00:00
import send2trash
import sys
2020-08-11 03:51:51 +00:00
from voussoirkit import pathclass
from voussoirkit import pipeable
2020-08-11 03:51:51 +00:00
def main(argv):
for path in pathclass.glob_many(pipeable.go(argv, skip_blank=True)):
pipeable.stdout(path.absolute_path)
try:
send2trash.send2trash(path)
except Exception as exc:
pipeable.stderr(f'Recycling {path.absolute_path} caused an exception:')
pipeable.stderr(str(exc))
return 1
return 0
if __name__ == '__main__':
raise SystemExit(main(sys.argv[1:]))