MCPcopy Index your code
hub / github.com/cirosantilli/linux-kernel-module-cheat / cp

Method cp

shell_helpers.py:64–67  ·  view source on GitHub ↗
(self, src, dest, **kwargs)

Source from the content-addressed store, hash-verified

62 return out
63
64 def cp(self, src, dest, **kwargs):
65 self.print_cmd(['cp', src, dest])
66 if not self.dry_run:
67 shutil.copy2(src, dest)
68
69 @staticmethod
70 def cmd_to_string(cmd, cwd=None, extra_env=None, extra_paths=None):

Callers

nothing calls this directly

Calls 1

print_cmdMethod · 0.95

Tested by

no test coverage detected