Displaying os commands

P

Perochon Sebastien

Hi all,

When I do (on Windows):

os.system('dir')

The command 'dir' is well executed but the command itself 'c:\dir' is not
displayed.
How to display the launched command ?

Thanks,
Sebastien
 
L

Larry Bates

Try:

import os
cmd=r"dir"
cwd=os.getcwd()
print "%s>%s" % (cwd, cmd)
os.system(cmd)

Larry Bates,
Syscon, Inc.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
474,200
Messages
2,571,046
Members
47,646
Latest member
xayaci5906

Latest Threads

Top