I'd like to embed the text of short python scripts inside of a bash script, for use in say, my .bash_profile. What's the best way to go about doing such a thing?

The solution I have so far is to call the python interpreter with the -c option, and tell the interpreter to exec whatever it reads from stdin. From there, I can build simple tools like the following, allowing me to process text for use in my interactive prompt:

function pyexec() {
    echo "$(/usr/bin/python -c 'import sys; exec sys.stdin.read()')"
}

function traildirs() {
    pyexec <<END
trail=int('${1:-3}')
import os
home = os.path.abspath(os.environ['HOME'])
cwd = os.environ['PWD']
if cwd.startswith(home):
    cwd = cwd.replace(home, '~', 1)
parts = cwd.split('/')
joined = os.path.join(*parts[-trail:])
if len(parts) <= trail and not joined.startswith('~'):
    joined = '/'+joined
print joined
END
}

export PS1="\h [\$(traildirs 2)] % "

This approach smells slightly funny to me though, and I'm wondering what alternatives to doing it this way might be.

My bash scripting skills are pretty rudimentary, so I'm particularly interested to hear if I'm doing something silly from the bash interpreter's perspective.

link|improve this question

can you say more clearly what is it you are actually trying to do? from what i see , Python is not really needed. you can do most things with the shell. – ghostdog74 Feb 3 '10 at 1:55
@ghostdog74: nothing really deeper than I was saying; I'm just a much better python programmer than a bash programmer, and IMO python is more powerful, in general, than bash. It might be handy to implement functionality used in a bash script in python, and sometimes not depend on external files when doing so. I'm finally making the switch from tcsh to bash (after 15 years), and I'm trying to bend the shell to my will/preferences. – Matt Anderson Feb 3 '10 at 3:15
-1: Why not simply create a .py module file? Why force the Python into a shell script when a better solution is (usually) to stop using the shell entirely? – S.Lott Feb 3 '10 at 3:19
feedback

3 Answers

up vote 3 down vote accepted

The python interpreter accepts - on the command line as a synonym for stdin so you can replace the calls to pyexec with:

python - <<END

See command line reference here.

link|improve this answer
Huh -- I had done a text search on the python man page, and the text stdin isn't in there. Looking more closely though, "standard input" is. Doh. – Matt Anderson Feb 3 '10 at 1:54
feedback

Why should you need to use -c? This works for me:

python << END
... code ...
END

without needing anything extra.

link|improve this answer
feedback

Interesting... I want an answer now too ;-)

He is not asking how to execute python code within a bash script but actually have the python set environment variables.

Put this in a bash script and try to get it to say "it worked".

export ASDF="it didn't work"

python <<END
import os
os.environ['ASDF'] = 'it worked'
END

echo $ASDF

The problem is that the python gets executed in a copy of the environment. Any changes to that environment aren't seen after python exits.

If there is a solution for this, I'd love to see it too.

link|improve this answer
That isn't really what I was getting at necessarily, and I'm pretty sure you can't get environment variables from a child process (directly) or alter a parent's environment variables (directly). You can however eval the output of the python script in the bash script, thus executing arbitrary statements, setting environment variables or doing anything else you might like. – Matt Anderson Feb 3 '10 at 3:12
1  
@Eric: If you really want an answer, post your own question. – Ned Deily Feb 3 '10 at 3:29
Matt, sorry... I briefly looked at your python script and saw you were doing stuff with os.environ and assumed that was the kind of thing you were doing. My mistake. – eric.frederich Feb 3 '10 at 3:44
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.