X-Git-Url: https://git.phdru.name/?p=extfs.d.git;a=blobdiff_plain;f=dummy;h=29457ee97e3e0d1635d653ddc7af67dfc8d4ff88;hp=9f070a5449f44b708413d3d4b5095b3620e6af9e;hb=9191b2a817c400864b94fff563dca756ac4b869f;hpb=ecf538471d5e688e1e8b32580d9d17af5d10d8f2 diff --git a/dummy b/dummy index 9f070a5..29457ee 100755 --- a/dummy +++ b/dummy @@ -9,9 +9,9 @@ License: GPL. """ -__version__ = "0.1.2" -__revision__ = "$Id: dummy,v 1.4 2004/06/13 10:05:30 phd Exp $" -__date__ = "$Date: 2004/06/13 10:05:30 $"[7:-2] +__version__ = "0.2.0" +__revision__ = "$Id: dummy,v 1.5 2004/06/13 10:18:37 phd Exp $" +__date__ = "$Date: 2004/06/13 10:18:37 $"[7:-2] __author__ = "Oleg Broytmann " __copyright__ = "Copyright (C) 2004 PhiloSoft Design" @@ -43,6 +43,18 @@ def mcdummy_list(): print "-r--r--r-- 1 user group 4 Jun 13 02:23 subdir/file4" +def mcdummy_copyout(): + """Extract a file from the VFS""" + # Ignore the VFS name (sys.argv[2]) + dummy_filename = sys.argv[3] + real_filename = sys.argv[4] + + real_file = open(real_filename, 'w') + real_file.write("Copied from %s\n" % dummy_filename) + real_file.write("Copied to %s\n" % real_filename) + real_file.close() + + g = globals() command = sys.argv[1] procname = "mcdummy_" + command