Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

irunner(1) [suse man page]

IRUNNER(1)																IRUNNER(1)

NAME
irunner - interactive runner interface SYNOPSIS
irunner [options] file_to_run DESCRIPTION
irunner is an interface to the various interactive runners available in IPython's irunner module. The already implemented runners are listed below; adding one for a new program is a trivial task, see the source for examples. OPTIONS
-h, --help show this help message and exit --ipython IPython interactive runner (default). --python Python interactive runner. --sage SAGE interactive runner. EXAMPLE
irunner.py --python -- --help will pass --help to the python runner. Similarly, irunner.py --ipython -- --interact script.ipy SEE ALSO
ipython(1) AUTHOR
irunner is an extension of Ken Schutte <kschutte-AT-csail.mit.edu>'s script contributed on the ipython-user list: http://scipy.net/piper- mail/ipython-user/2006-May/001705.html This manual page was written by Bernd Zeimetz <bernd@bzed.de>, for the Debian project (but may be used by others). Modified by Fernando Perez <Fernando.Perez@berkeley.edu> for inclusion in IPython. April 24, 2007 IRUNNER(1)

Check Out this Related Man Page

IPCLUSTER(1)															      IPCLUSTER(1)

NAME
ipcluster - IPython parallel computing cluster control tool SYNOPSIS
ipcluster {piexec,local,mpirun,pbs,ssh} [options] DESCRIPTION
ipcluster is a control tool for IPython's parallel computing functions. IPython cluster startup. This starts a controller and engines using various approaches. Use the IPYTHONDIR environment variable to change your IPython directory from the default of .ipython or _ipython. The log and security subdirectories of your IPython directory will be used by this script for log files and security files. POSITIONAL ARGUMENTS
The first positional argument should be one of: {mpiexec, local, mpirun, pbs, ssh}, which are the available cluster types. For detailed help on each, type "ipcluster TYPE --help". Briefly: local run a local cluster mpirun run a cluster using mpirun (mpiexec also works) mpiexec run a cluster using mpiexec (mpirun also works) pbs run a pbs cluster ssh run a cluster using ssh, should have ssh-keys setup OPTIONS
-h, --help show help message and exit EXAMPLE
ipcluster local -n 4 This command will start 4 IPython engines on the local computer. SEE ALSO
ipython(1),ipcontroller(1),ipengine(1) AUTHOR
ipcluster is a tool that ships with IPython, created by the IPython Development Team. This manual page was written by Stephan Peijnik <debian@sp.or.at>, for the Debian project (but may be used by others). Modified by Fer- nando Perez <Fernando.Perez@berkeley.edu> for inclusion in IPython. October 28, 2008 IPCLUSTER(1)
Man Page

15 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

running cd from a script

is there anyway to change directories in a script and have it actually work? when u put something like cd /var/tmp in a script named runner. when u run that runner script, the current directory is still what it is. it doesn't change to /var/tmp. what can be done about this? (5 Replies)
Discussion started by: SkySmart
5 Replies

2. UNIX for Dummies Questions & Answers

Run a program for every file with a given extension

Hey all I have written a python program that takes as input the name of a data file with the extension .lc I would like to write a shell script that finds all of the .lc files in a set of branching directories and runs the program. Any help? (5 Replies)
Discussion started by: Phobos33
5 Replies

3. Shell Programming and Scripting

Traverse catalogs

Here is my problem (it seems I've a lot of problems nowadays). I have several folders: runner.20070830.12.45.12 runner.20070830.12.45.15 runner.20070830.12.45.17 runner.20070830.12.45.20 runner.20070830.12.45.45 runner.20070830.12.45.55 Each catalog contains some html-files. I... (3 Replies)
Discussion started by: baghera
3 Replies

4. Homework & Coursework Questions

How to write script that behaves both in interactive and non interactive mode

Q. Write a script that behaves both in interactive and non interactive mode. When no arguments are supplied it picks up each C program from the directory and prints first 10 lines. It then prompts for deletion of the file. If user supplies arguments with the script , then it works on those files... (8 Replies)
Discussion started by: rits
8 Replies

5. AIX

Telnet non interactive

Dear all, I need to have shell script which does telnet to another machine with non interactive way like what we do using ftp. Thanks, Shahnaz. (3 Replies)
Discussion started by: shahnazurs
3 Replies

6. UNIX for Advanced & Expert Users

How to pass arguments to an interactive script

Hey guys, I have an interactive script that is quite critical to our production environmentl thus updating it to run non-interactively is not an option. The script takes a varying number of arguments, which it ques untill user confirm end of data entry e.g of user input : 1 2 y ... (3 Replies)
Discussion started by: geek.ksa
3 Replies

7. UNIX for Dummies Questions & Answers

Numpy and scipy installatin to unix server

Hello, i very need to install numpy and scipy packages to pyhton on my unix server. All my tries was unssuccesalbe. Can anybody tell me how can resolve my problem. (6 Replies)
Discussion started by: daggeto
6 Replies

8. Shell Programming and Scripting

Passing arguments to python

How can I pass arguments to a python script??? (3 Replies)
Discussion started by: kristinu
3 Replies

9. UNIX for Dummies Questions & Answers

Turn python script into an installed UNIX command (Mac OS X)

Okay so i have a script i wrote in python. I want to turn this script into an INSTALLED COMMAND to run in terminal. Right now i run it like this in terminal... $ python myscriptname.py or $ ./myscriptname.py but i want to be able to run it like this in terminal... $ myscriptname ... (3 Replies)
Discussion started by: cbreiny
3 Replies

10. Shell Programming and Scripting

Passing variable from shell script to python script

I have a shell script main.sh which inturn call the python script ofdm.py, I want to pass two variables from shell script to python script for its execution. How do i achieve this ????? Eg: main.sh a=3 b=3; c= a+b exec python ofdm.py ofdm.py d=c+a Thanks in Anticipation (4 Replies)
Discussion started by: shashi792
4 Replies

11. Programming

Running python script in cygwin

I have python installed here on windows: C:\Python27 and can run a script from the command line but would rather use cygwin. $ cd "C:\Users\cmccabe\Desktop\annovar" cmccabe@DTV-L2231M5J /cygdrive/c/Users/cmccabe/Desktop/annovar $ python run_batch_job.py Traceback (most recent call last):... (3 Replies)
Discussion started by: cmccabe
3 Replies

12. UNIX for Advanced & Expert Users

Calling expect from shell script which inturn call python

Hi Team, I have to execute a task from my local machine, where i keep my .expect,.sh, .bash and .python scripts .Task are coded in the script and has to be executed at remote machine. for that i used following task ..... SCRIPT 1: cat shell_check.sh read value if then expect... (3 Replies)
Discussion started by: Sivarajan N
3 Replies

13. UNIX for Beginners Questions & Answers

Help for script

hi i must create a script bashp { margin-bottom: 0.25cm; line-height: 120%; }a:link { } You should definitely make a bash or python fetch script, and detect when content changes. can you help me to realise this script thanks (6 Replies)
Discussion started by: actarus
6 Replies

14. Shell Programming and Scripting

If condition after raw input in python

Hi, I have a python script which is completely interactive. I have almost 10+ raw input statements like below which are collected from user one by one. req_number = raw_input("Please enter request number or Q to Quit: ") if (req_number in ): sys.exit() Is it possible for a more... (6 Replies)
Discussion started by: ctrld
6 Replies

15. Shell Programming and Scripting

Shell script inputs to python

Hi I am trying to pass 2 input parameters from shell script to python API end point ,but not passing what i expected when print those inputs .Please advise data.txt " 7554317" ,xx5e1 " 7554317" ,xx96 " 7554317" ,xxd6 " 554317" ,xde cat $sites/data.txt |sort |uniq >$sites/a.txt... (5 Replies)
Discussion started by: akil
5 Replies