Tagged Questions
os.system is a python library function. It execute the command (a string) in a subshell.
5
votes
3answers
528 views
Python, using os.system - Is there a way for Python script to move past this without waiting for call to finish?
I am trying to use Python (through Django framework) to make a Linux command line call and have tried both os.system and os.open but for both of these it seems that the Python script hangs after ...
4
votes
4answers
435 views
Python os.system without the output
I'm running this:
os.system("/etc/init.d/apache2 restart")
It restarts the webserver, as it should, and like it would if I had run the command directly from the terminal, it outputs this:
* ...
3
votes
2answers
243 views
Python os.rename if file system is full
I'm asking this beacause there's no way to try it myself (if there's one share it please (:).
I'm doing some file handling with Python os library, specifically file moving/renaming with os.rename().
...
3
votes
2answers
913 views
Python 'source HOME/.bashrc' with os.system()
I am writing a python script (Linux) that is adding some shell aliases (writes them to HOME/.bash_aliases).
In order to make an alias available immediately after it was written I should issue the ...
2
votes
1answer
64 views
Successive multiprocessing
I am filtering huge text files using multiprocessing.py. The code basically opens the text files, works on it, then closes it.
Thing is, I'd like to be able to launch it successively on multiple text ...
2
votes
3answers
110 views
Python, os.system fails when script not in same folder
I have a bat.bat file containing the following command: 'setup.py build'
I have a script that executes this bat command using:
os.system('E:/bla/FPtest/retryURL/Temp_installed/bat.bat'
If i run the ...
2
votes
2answers
132 views
In Ubuntu Python 2.7 reading output of an os.system() command
So I am running code that looks like this on Ubuntu 11.4 and Python 2.7:
p_scan_command = "sudo nmap -sC -sV -PN -O 192.168.0.1/24"
time.sleep(1.5)
os.system(p_scan_command)
f = open('nmapscan1.log', ...
2
votes
2answers
117 views
Detect and handle a LaTeX warning/error generated via an os.system call in Python
I wrote a python script to automate turning Sweave/LaTeX documents into PDFs. Here's the most important part:
os.system("""echo "Sweave('%s.Rnw')" | R --vanilla --quiet"""%topic)
seq = ...
2
votes
2answers
3k views
Python, os.system for command-line call (linux) not returning what it should?
I need to make some command line calls to linux and get the return from this, however doing it as below is just returning 0 when it should return a time value, like 00:08:19, I am testing the exact ...
2
votes
2answers
444 views
Overcoming os.system() limitation in Python 2.3
I am having a problem converting one of my company's scripts from csh to Python. The csh script calls an aliased command, but when I call that same aliased command via os.system(), it does not work.
...
1
vote
1answer
69 views
Os.system not exiting
I am working on a python based tkinter script, where the flow is like this:
A csh script can be run by specifying the script name and arguments on unix terminal.
A python script is written to ...
1
vote
3answers
119 views
os.system or subprocess to pass command to shell
I am trying to execute a command in a shell and pipe the output at the same time for filtering.
the relevent code looks like:
import os
n=raw_input("enter cmd")
os.system(n + ' | grep x')
the ...
1
vote
2answers
163 views
Using Python subprocess rather than os.system
Following the advice of Ignacio ( Python remove spaces and append ) I am trying to convert the below command to use subprocess rather than os.system.
The script: os.system("/usr/local/bin/growlnotify ...
1
vote
2answers
344 views
store Os.system result in variable
hello guys i'm wondering how to store os.system result in variable
as we know it's return 0
so i'm wondering what i should do to store the result
and second question : how to get ip in Linux [ ...
1
vote
4answers
831 views
issue running a program (R) in Python to perform an operation (execute a script)
I'm tying to execute an R script from python, ideally displaying and saving the results. Using rpy2 has been a bit of a struggle, so I thought I'd just call R directly. I have a feeling that I'll ...
1
vote
2answers
253 views
Help with MySQL (.sql) and Shell Script
How do I call the following in a .sql file?
mysql -u username -h serverip db -e "select a, b, c, d from mytable" > '/home/dump/result.txt';
I will then have to convert the tab separated file to ...
0
votes
4answers
76 views
How do I check the operating system in Python?
I want to check the operating system (on the computer where the script runs).
I know I can use os.system('umount -o') in Linux, but it gives me a message in the console, and I want to write to a ...
0
votes
4answers
97 views
Changing user in python
I am writing a simple script which restarts a hadoop slave. In the script, I have to do some initial changes as a root user. After that I have to change to user "hadoop" and perform set of commands. I ...
0
votes
1answer
108 views
python in applescript: subprocess.call vs os.system in automator
I found a work around when calling a python script from a shell script from automator (version 2.1.1 in mac os x 10.6.8) (python 2.6.1). My issue is that os.system("mkdir foo") works in a (very ...
0
votes
0answers
49 views
Debugging os.sytem call. — What environment variables does Python care about? [closed]
Possible Duplicate:
Launching python subprocess has different behavior depending on launcher
How can a Python parent process affect a Python subprocess?
I've got a Python script that ...
0
votes
1answer
107 views
console output of os.system()?
When calling os.system() in the Interactive Interpreter, you can see what it output's in the console.
But in my case, I needed to change sys.stderr and sys.stdout to an instance of another class and ...
0
votes
3answers
250 views
A question about execute an R script in python
When I execute the script in R, it is:
$ R --vanilla --args test_matrix.csv < hierarchical_clustering.R > out.txt
In python, it works if I type like:
process = subprocess.call("R --vanilla --args ...
0
votes
2answers
208 views
How does subprocess.call differ from os.system
I have a python script to install/uninstall some regularly used programs for me and it also does some shortcut/folder clean up after uninstall. I used to use this code to delete a folder
...
0
votes
3answers
626 views
Execute .jar from Python
I am trying to build a very simple python script to automate minifying/combining some css/js assets.
I am not sure how to properly handle the minification step. I use yui-compressor and usually call ...
0
votes
2answers
228 views
Python: Opening a unicode named xls file from the script
How do you open a unicode named file (with spaces) from within a Python script under Windows?
filename for example: Hello עולם.xls
For a non-unicode non-spaced xls file, os.system(filename) works ...
0
votes
3answers
840 views
How can I delay execution until after os.system finishes?
I am using os.system to copy a file from a system to another. The logic of a very simple program is to execute another set of commands after this file gets copied.
The problem is that os.system does ...
0
votes
3answers
623 views
os.popen() variables
So i have this application thats rather complicated...
To keep it short this is the main things you should know:
file_name = raw_input("Name your file:").lower()
os.popen(sudo tcpdump -c5 -vvv -w ...
0
votes
4answers
948 views
Redirecting stdio from a command in os.system() in python
Usually I can change stdout in python by changing the value of sys.stdout. However, this only seems to affect print statements. So, is there any way I can suppress the output (to the console), of a ...
0
votes
1answer
92 views
Start local PHP script w/ local Python script
The Python program I'm writing needs to start a local PHP script outside of Python's process. The program also needs to pass params to the PHP script. So far this seems to start the script:
...
0
votes
0answers
1k views
Python: How to execute a SQL file or command
I have this Python script:
import sys
import getopt
import timeit
import random
import os
import re
import ibm_db
import time
from string import maketrans
runs=5
queries=50
file = ...
0
votes
4answers
1k views
Executing shell commands as given UID in Python
I need a way to execute the os.system() module as different UID's. It would need to behave similar to the following BASH code (note these are not the exact commands I am executing):
su user1
ls ~
mv ...
0
votes
3answers
813 views
How do I get data from stdin using os.system()
The only reliable method that I a have found for using a script to download text from wikipedia is with cURL. So far the only way I have for doing that is to call os.system(). Even though the output ...
-1
votes
2answers
245 views
Python, trying to run a program from the command prompt
I am trying to run a program from the command prompt in windows. I am having some issues. The code is below:
commandString = "'C:\Program Files\WebShot\webshotcmd.exe' //url '" + columns[3] + "' ...
-3
votes
3answers
42 views
os.system appdata glitch? [closed]
When I try to use os.system to open a file in appdata it doesnt work. Can anyone explain this?
This is the code
os.system('C:\Users\%s\appdata\LocalHigh\%s'%(user,filename))
#os has been imported ...