473,545 Members | 2,001 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

using python at the bash shell?

Hi all. I just installed Ubuntu and I'm learning how to use the bash
shell. Aside from the normal commands you can use, I was wondering if
it's possible to use Python from the terminal instead of the normal bash
commands (e.g. print instead of echo). My main reason for asking is that
I like using Python for everything, and if I don't need to learn the
bash 'language', then I won't just yet.

Thanks.
Aug 8 '06 #1
16 3924
On Mon, 2006-08-07 at 21:03 -0400, John Salerno wrote:
Hi all. I just installed Ubuntu and I'm learning how to use the bash
shell. Aside from the normal commands you can use, I was wondering if
it's possible to use Python from the terminal instead of the normal bash
commands (e.g. print instead of echo).
>From a terminal window typing,
python -c "print 'testing'"

would produce the same results as

echo 'testing'

in bash shell, but obviously not as nice.
My main reason for asking is that
I like using Python for everything, and if I don't need to learn the
bash 'language', then I won't just yet.
Just type python and do your stuff in the python interpreter. This
becomes your shell.

This then got me thinking, how about making python your login shell. So
I modified my shell login entry in /etc/passwd to /usr/bin/python,
logged in and voila, I was presented with my friendly python shell upon
opening a terminal window.

So the answer is "Yes".

--
This message has been scanned for viruses and
dangerous content by MailScanner, and is
believed to be clean.

Aug 8 '06 #2

JohnAside from the normal commands you can use, I was wondering if
Johnit's possible to use Python from the terminal instead of the
Johnnormal bash commands (e.g. print instead of echo).

Take a look at ipython <http://ipython.scipy.o rg/>. It's not precisely what
you've asked for, but it provides some features that help integrate Python
with the shell environment.

Skip
Aug 8 '06 #3
sk**@pobox.com wrote:
JohnAside from the normal commands you can use, I was wondering if
Johnit's possible to use Python from the terminal instead of the
Johnnormal bash commands (e.g. print instead of echo).

Take a look at ipython <http://ipython.scipy.o rg/>. It's not precisely what
you've asked for, but it provides some features that help integrate Python
with the shell environment.

Skip
FWIW, I second this. If you want to use python as your shell use
Ipython. It's just great. Fernando Pérez has done a Good Thing IMHO.

Be sure to read (or at least skim) the manual:
http://ipython.scipy.org/doc/manual/index.html

Here's an example of calling "man ls" and then getting the results of
"ls -l" into a python list (one list item per line) and then extracting
the size (as a string) of the MANIFEST file... Enjoy... (I hope
reformatting doesn't screw this up too badly.)
$ ipython
Python 2.4.3 (#2, Apr 27 2006, 14:43:58)
Type "copyright" , "credits" or "license" for more information.

IPython 0.7.1.fix1 -- An enhanced Interactive Python.
? -Introduction to IPython's features.
%magic -Information about IPython's 'magic' % functions.
help -Python's own help system.
object? -Details about 'object'. ?object also works, ?? prints more.

In [1]: !man ls
Reformatting ls(1), please wait...
<viewing actual man page here. ~Simon>

In [2]: !!ls -l
Out[2]:
['total 40',
'drwxr-xr-x 3 sforman sforman 4096 2006-08-02 12:41 docs',
'drwxr-xr-x 3 sforman sforman 4096 2006-04-27 23:49 logs',
'-rw-r--r-- 1 sforman sforman 887 2006-04-27 23:49 MANIFEST',
'-rw-r--r-- 1 sforman sforman 173 2006-05-04 14:04 MANIFEST.in',
'-rw-r--r-- 1 sforman sforman 3338 2006-06-14 20:19 README',
'-rw-r--r-- 1 sforman sforman 475 2006-07-16 17:40 setup.py',
'drwxr-xr-x 4 sforman sforman 4096 2006-08-07 15:04 src',
'drwxr-xr-x 3 sforman sforman 4096 2006-06-21 20:59 tests',
'-rw-r--r-- 1 sforman sforman 898 2006-07-09 21:53 TODO',
'drwxr-xr-x 3 sforman sforman 4096 2006-08-05 17:37 util']

In [3]: data = [n.split() for n in _[1:]]

In [4]: print data[2][4]
887

In [5]:
etc...

HTH,
~Simon

Aug 8 '06 #4

John Salerno wrote:
I like using Python for everything, and if I don't need to learn the
bash 'language', then I won't just yet.
And like vim, Ipython works on both windows and ubuntu.

rd

Aug 8 '06 #5
sk**@pobox.com wrote:
JohnAside from the normal commands you can use, I was wondering if
Johnit's possible to use Python from the terminal instead of the
Johnnormal bash commands (e.g. print instead of echo).

Take a look at ipython <http://ipython.scipy.o rg/>. It's not precisely what
you've asked for, but it provides some features that help integrate Python
with the shell environment.

Skip
Can you use IPython to do normal bash things, like installing, etc.?
Aug 8 '06 #6

"John Salerno" <jo******@NOSPA Mgmail.comwrote in message
news:44******** **************@ news.astraweb.c om...
Hi all. I just installed Ubuntu and I'm learning how to use the bash
shell. Aside from the normal commands you can use, I was wondering if
it's possible to use Python from the terminal instead of the normal bash
commands (e.g. print instead of echo). My main reason for asking is that
I like using Python for everything, and if I don't need to learn the
bash 'language', then I won't just yet.
The answer is yes and you are getting excellent tips from others.

I am just validating your experience by saying that coming from Python is a
barrier to my learning BASH. The more I work with Linux/BASH, the more I
see how I might have used BASH to script something I have already done in
Python. But the question that always comes up is why bother with BASH at
all ;-) And with Python available everywhere, ....

I've just reconsiled to pick up my BASH by osmosis and concentrate on
(much!) cleaner scripting with Python.

Thomas Bartkus
Aug 8 '06 #7
Thomas Bartkus wrote:
I am just validating your experience by saying that coming from Python is a
barrier to my learning BASH. The more I work with Linux/BASH, the more I
see how I might have used BASH to script something I have already done in
Python. But the question that always comes up is why bother with BASH at
all ;-) And with Python available everywhere, ....

I've just reconsiled to pick up my BASH by osmosis and concentrate on
(much!) cleaner scripting with Python.
Glad to know I'm not alone! But I'm certainly much happier using Python
than bash anyway. All I really want to learn as far as the shell is
concerned are the 'natural' things you can do, such as directory/file
manipulation, installing programs, etc. I don't have much of a need to
learn the actual programming parts of the bash language, especially when
I can do the same with Python, which is so much cooler. :)
Aug 8 '06 #8
>I've just reconsiled to pick up my BASH by osmosis and concentrate on
(much!) cleaner scripting with Python.
JohnI don't have much of a need to learn the actual programming parts
Johnof the bash language, ...

As long as you promise never, ever, ever to try programming in csh...

Skip
Aug 8 '06 #9
sk**@pobox.com wrote:
>I've just reconsiled to pick up my BASH by osmosis and concentrate on
>(much!) cleaner scripting with Python.

JohnI don't have much of a need to learn the actual programming parts
Johnof the bash language, ...

As long as you promise never, ever, ever to try programming in csh...

Skip
Heh heh, Python all the way!
Aug 8 '06 #10

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

Similar topics

2
14344
by: Jorgen Grahn | last post by:
I couldn't think of a good solution, and it's hard to Google for... I write python command-line programs under Win2k, and I use the bash shell from Cygwin. I cannot use Cygwin's python package because of a binary module which has to be compiled with Visual C 6. My scripts start with a '#!/usr/bin/env python' shebang, as God intended. ...
6
1840
by: Robin Siebler | last post by:
I have a bunch of command line tests that I need to automate. I've run into too many bugs with the default Win2k command shell, so I need to either purchase 4NT or handle the logic and output processing with Python. I'm looking for experiences, comments, problems, etc. Also, I'm trying to figure out how to use popen(). To say that the...
14
19710
by: Rochester | last post by:
Hi, I just found out that the general open file mechanism doesn't work for named pipes (fifo). Say I wrote something like this and it simply hangs python: #!/usr/bin/python import os
7
2232
by: Frank Potter | last post by:
I learned some python in windows. And now I've turned to linux. I read a book and it teaches how to write shell script with bash, but I don't feel like the grammar of bash. Since I know about python, I want to get a linux shell which use python grammar. I searched by google and I found pysh, which is not maintained any more. There's...
9
2480
by: Endless Story | last post by:
My last version of Python was 2.4, running smoothly on XP with path c: \Python24 - no need even to include this path in PATH; everything worked as it's supposed to at the command line. Just installed Python 2.5, after uninstalling 2.4 (and also 2.3 which had lingered). Now if I open a shell in Windows Python is not available! Here are the...
4
7494
by: Stephen Cattaneo | last post by:
Hello all, I am attempting to execute an automated test (written in Python) via cron. I have to check the HOSTNAME variable as part of the test, oddly under cron the HOSTNAME environment variable is not in the os.environ dictionary. I know that cron runs in a subshell that does not have all of the normally set environment variables. ...
0
3449
by: Cameron Simpson | last post by:
On 17Aug2008 21:25, John Nagle <nagle@animats.comwrote: Because $HOSTNAME is a bash specific variable, set by bash but NOT EXPORTED! Like $0 and a bunch of other "private" variables, subprocesses do not inherit this value. From "man bash": Shell Variables The following variables are set by the shell:
8
5572
by: james.kirin39 | last post by:
Hi everyone, After having used Python on Linux for some time, I now have to do Python coding on Windows. I am big fan of the interactive Python shell to test, eg, regexps. Is there an interactive Python shell on Windows that supports: - easy copy-pasting to/from an editor? (as opposed to the cumbersome "mark", "copy" and then "paste"...
6
1865
by: Frantisek Malina | last post by:
What is the best way to do the regular bash commands in native python? - create directory - create file - make a symlink - copy a file to another directory - move a file - set permissions I need to write a program that creates real application/FTP accounts
0
7669
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. ...
0
7773
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
5987
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...
0
4962
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3468
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3450
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
1901
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
1
1028
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
722
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

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.