473,698 Members | 2,337 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Can we pass some arguments to system("cmdline ")?

Hi!
I was wondering if we can pass some arguments to system("cmdline ")?

E.g in Perl, we can do something like:

$dir="/home/cypher";

system("ls $dir");

which would instruct Perl to do an "ls /home/cypher"

But in python, doing something like

dir="/home/cypher"
system("ls dir")

would cause python to execute "ls dir" where "dir" might not exist at
all! Is there a way to reproduce the same thing in Python?

Thanks for any insights.

cheers,
Didier.

Jul 19 '05 #1
5 2248
Didier C wrote:
Hi!
I was wondering if we can pass some arguments to system("cmdline ")?

E.g in Perl, we can do something like:

$dir="/home/cypher";

system("ls $dir");

which would instruct Perl to do an "ls /home/cypher"

But in python, doing something like

dir="/home/cypher"
system("ls dir")

would cause python to execute "ls dir" where "dir" might not exist at
all! Is there a way to reproduce the same thing in Python?

Thanks for any insights.

cheers,
Didier.


You should use something like this:

dir = "/home/cypher"
system("ls %s" % dir)

--
Qiangning Hong

_______________ _______________ _______________ __
/ lp1 on fire \
| |
\ -- One of the more obfuscated kernel messages /
-----------------------------------------------
\
\
\
___ _____ ___
/ \ / /| / \
| | / / | | |
| | /____/ | | |
| | | | | | |
| | | {} | / | |
| | |____|/ | |
| | |==| | |
| \___________/ |
| |
| |
Jul 19 '05 #2
On Sun, Jun 19, 2005 at 11:12:05PM -0700, Didier C wrote:
Hi!
I was wondering if we can pass some arguments to system("cmdline ")?

E.g in Perl, we can do something like:

$dir="/home/cypher";

system("ls $dir");

which would instruct Perl to do an "ls /home/cypher"

But in python, doing something like

dir="/home/cypher"
system("ls dir")

system("ls %(dir)s" % locals())
system("ls %s" % dir)
system("ls %(name)s" % dict(name=dir)

But you should consider if you really really want to do this.
What happens when " " in dir?
What happens when dir == "; rm -Rf /"

Andreas
Jul 19 '05 #3
Didier C wrote:
E.g in Perl, we can do something like:

$dir="/home/cypher";

system("ls $dir");

Is there a way to reproduce the same thing in Python?


system("ls %s" % dir)

But you should really be using subprocess for security (so that if
dir=="/home/foo; rm -rf /" nothing bad will happen):

import subprocess
subprocess.Pope n(['ls', dir])
Jul 19 '05 #4
Thanks all for the reply. I'll try out those things out. :)

Cheers,
Didier.
Leif K-Brooks a écrit :
Didier C wrote:
E.g in Perl, we can do something like:

$dir="/home/cypher";

system("ls $dir");

Is there a way to reproduce the same thing in Python?


system("ls %s" % dir)

But you should really be using subprocess for security (so that if
dir=="/home/foo; rm -rf /" nothing bad will happen):

import subprocess
subprocess.Pope n(['ls', dir])


Jul 19 '05 #5
>>>>> "Didier Casse" <el********@gma il.com> (DC) wrote:
DC> Thanks all for the reply. I'll try out those things out. :)


But don't try the following
> system("ls $dir"); with dir=="/home/foo; rm -rf /"


--
Piet van Oostrum <pi**@cs.uu.n l>
URL: http://www.cs.uu.nl/~piet [PGP]
Private email: pi**@vanoostrum .org
Jul 19 '05 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
3287
by: Bob Lidgard | last post by:
Hi, I need some help. Hopefully this is trivial! I have created a special file type for my application. I can easily associate the app with the file type manually and I have even seen som code to do this as well. (MSDN - 185453) However, once the app is launched after double-clicking on the file, how can I identify which file was selected, i.e. triggered the launch. Pls point me to the right direction for search!
1
3635
by: Chris | last post by:
I built small C# Web and Web Service applications in a training class last week. The applications worked in the class, but when I tried to run them again over the weekend, they both bombed. Instead of getting my Web page, or the Web Service page, I get a page full of error text (below). I am hoping the anwser will be obvious to someone. I've tried a few things to address the problem, including
4
11418
by: Ying Lu | last post by:
Hello all, Is it possible that we setup the password in the pg_dump command line instead of let users input it through prompt command. E.g., pg_dump test -c -d --host=localhost -U testUser1 --file='a.dmp' --no-privileges Thanks a lot! Ly
0
8676
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8608
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9161
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8897
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
7732
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6522
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4619
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3050
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2332
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.