1
vote
3answers
300 views

pwd from bash from python expand symlinks

I have a shell and I use pwd to show in which directory I am. but when I'm in directory that it's a symlink it show original directory not the symlink import subprocess as sub def execv(command, ...
0
votes
0answers
317 views

Web based command line interface [closed]

I was looking for some Web based command line interfaces, but not language interpreters. Found this one BlackWidow but it seems not to be supported any longer. Does anyone heard about similar project? ...
2
votes
4answers
679 views

Inline PHP (command line)

I would like to make something like tryruby.org. I take a line from user (e.g. echo __FILE__) and I want to execute it in PHP and return output back to client. I tried to do exec('php -r ' . ...
3
votes
1answer
230 views

Eclipse built-in shell

Does Eclipse come with a built-in interpreter? If not is there anything like IDLE for Python Shell that is lightweight and just works? I have already tried Groovy but I need something that is ...
0
votes
1answer
1k views

Expect script does not exit after completion

I have the following situation. My main expect script looks something like this #!/usr/bin/expect -d set timeout 900 spawn main_ksh_script.ksh [lindex $argv 0] expect { "Press ENTER to ...
1
vote
1answer
186 views

Is it possible to continue execution even if “expect” does not match anything

Is there a way with expect interpreter to say something like expect { "keyword1" {send "action1"} "keyword2" {send "action2"} unpredicted stuff {send "action3"} }
3
votes
5answers
591 views

Lua: looking for an open source graphical interpreter / console / interactive shell

I'm looking for an open-source Lua interpreter (sometimes called a lua console or a lua shell) with the following features: - Ability to write lua commands and see results - Simple graphic UI - ...
0
votes
1answer
157 views

Any syntax highlighting for CL interpreters?

When invoking 'python' or 'guile' or any other interpreter, I like the read-eval-print interface, but I miss syntax highlighting, paren-matching, and quick navigation like within vim. Are there any ...
3
votes
1answer
270 views

lisp interpreter in python

I'm curious how a part of Peter Norvig's Lisp interpreter works. One can define functions in this Lisp interpreter...how does this work? I'm a beginner, and just would like a simple explanation. ...
13
votes
8answers
10k views

How to repeat last command in python interpreter shell?

How do I repeat the last command? The usual keys: Up, Ctrl+Up, Alt-p don't work. They produce nonsensical characters. (ve)[kakarukeys@localhost ve]$ python Python 2.6.6 (r266:84292, Nov 15 2010, ...
67
votes
3answers
58k views

Python 3 online interpreter / shell [closed]

Does anyone know about an online interpreter like http://codepad.org/ or http://try-python.mired.org/ with Python 3?
11
votes
4answers
10k views

How can I implement my own basic unix shell in C?

My Shell should understand PATH environment variable. It can be set and modified. It runs in two ways -interactive & batch mode. Shell is capable of taking more than one job like ls;ps;wc ...
5
votes
7answers
2k views

Haskell Interactive

I am a bit rusty on my Haskell and am looking to ramp back up. One thing I enjoy from F# is the F# Interactive shell integrated with Visual Studio: I can evaluate virtually anything (including ...
18
votes
3answers
5k views

How do I add tab completion to the Python shell?

When starting a django application using python manage.py shell, I get an InteractiveConsole shell - I can use tab completion, etc. Python 2.5.1 (r251:54863, Apr 15 2008, 22:57:26) [GCC 4.0.1 (Apple ...
2
votes
1answer
2k views

How to load a python module into a fresh interactive shell in Komodo?

When using PyWin I can easily load a python file into a fresh interactive shell and I find this quite handy for prototyping and other exploratory tasks. I would like to use Komodo as my python ...