35

I am new in Python. I am creating a Python script that returns a string "hello world." And I am creating a shell script. I am adding a call from the shell to a Python script.

  1. i need to pass arguments from the shell to Python.
  2. i need to print the value returned from Python in the shell script.

This is my code:

shellscript1.sh

#!/bin/bash
# script for testing
clear
echo "............script started............"
sleep 1
python python/pythonScript1.py
exit

pythonScript1.py

#!/usr/bin/python
import sys

print "Starting python script!"
try:
    sys.exit('helloWorld1') 
except:
     sys.exit('helloWorld2') 
aschultz
  • 1,608
  • 3
  • 17
  • 28
Abdul Manaf
  • 4,643
  • 7
  • 45
  • 92

3 Answers3

54

You can't return message as exit code, only numbers. In bash it can accessible via $?. Also you can use sys.argv to access code parameters:

import sys
if sys.argv[1]=='hi':
    print 'Salaam'
sys.exit(0)

in shell:

#!/bin/bash
# script for tesing
clear
echo "............script started............"
sleep 1
result=`python python/pythonScript1.py "hi"`
if [ "$result" == "Salaam" ]; then
    echo "script return correct response"
fi
Ali Nikneshan
  • 3,347
  • 25
  • 37
8

Pass command line arguments to shell script to Python like this:

python script.py $1 $2 $3

Print the return code like this:

echo $?
coffee-converter
  • 947
  • 4
  • 11
0

You can also use exit() without sys; one less thing to import. Here's an example:

$ python
>>> exit(1)
$ echo $?
1

$ python
>>> exit(0)
$ echo $?
0
Samuel
  • 6,986
  • 8
  • 41
  • 39