/usr/lib/python2.7/dist-packages/trashcli/cmds.py is in trash-cli 0.12.9.14-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 | # Copyright (C) 2007-2011 Andrea Francia Trivolzio(PV) Italy
import sys,os
def put():
from trashcli.trash import TrashPutCmd
return TrashPutCmd(
sys.stdout,
sys.stderr
).run(sys.argv)
def restore():
from trashcli.trash import RestoreCmd
RestoreCmd(
stdout = sys.stdout,
stderr = sys.stderr,
environ = os.environ,
exit = sys.exit,
input = raw_input
).run(sys.argv)
def empty():
from trashcli.trash import EmptyCmd
from trashcli.list_mount_points import mount_points
return EmptyCmd(
out = sys.stdout,
err = sys.stderr,
environ = os.environ,
list_volumes = mount_points,
).run(*sys.argv)
def list():
from trashcli.trash import ListCmd
from trashcli.list_mount_points import mount_points
ListCmd(
out = sys.stdout,
err = sys.stderr,
environ = os.environ,
getuid = os.getuid,
list_volumes = mount_points,
).run(*sys.argv)
|