I am a mew user of python.And I want to run following command in python

perl test.pl -testconfig <config file> > test.log 2>&1

Can anybody help me.

os.system should work if you just want to run a command. If that doesn't work then subprocess is the next step up.
os.system("perl test.pl -testconfig <config file> > test.log 2>&1")

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.