Differences between revisions 43 and 74 (spanning 31 versions)
Revision 43 as of 2008-12-18 15:22:48
Size: 611
Editor: kevinnewman
Comment:
Revision 74 as of 2014-08-06 03:37:52
Size: 391
Editor: RFikes
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
# cmd.py
# ^^^^^^
# Mimics the windows command line. Good if the system admin has locked it off.
# Made for Windows XP

import os

command = ""
wd = os.getcwd()
print "Shell Window Replacement by fatalGlory"
print "^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^"
print ""
while command != "exit":
    command = raw_input("" + wd + ">")
    if command.split(" ")[0] == "cd":
        try:
            os.chdir(command.split(" ")[1])
            wd = os.getcwd()
        except:
            print "Bad command or file name."
    else:
        cmd2 = os.popen(command)
        print cmd2.read()
Dewitt Hunsinger is that which you can call him and he believes it sounds very good. Debt gathering is my day-job today but I've previously applied for another. My partner and I thought we would reside in Maine. To drive is a thing that I've done-for years.<<BR>>
<<BR>>
For a better answer please click the link to this site: [[https://dev.plone.org/ticket/14334| weight loss diet]]

Dewitt Hunsinger is that which you can call him and he believes it sounds very good. Debt gathering is my day-job today but I've previously applied for another. My partner and I thought we would reside in Maine. To drive is a thing that I've done-for years.

For a better answer please click the link to this site: weight loss diet

FrontPage (last edited 2020-10-27 22:20:58 by albertosottile)