Python run multi line shell command

I want to run the following lines of linux bash commands inside a python program.

tail /var/log/omxlog | stdbuf -o0 grep player_new | while read i
do
    Values=$[omxd S | awk -F/ '{print $NF}']
    x1="${Values}"
    x7="${x1##*_}"
    x8="${x7%.*}"
    echo ${x8}
done

I know that for a single-line command, we can use the following syntax:

subprocess.call[['my','command']]

But, how can I use subprocess.call if there are several commands in multiple lines !?

Stephen Rauch

45.7k30 gold badges105 silver badges126 bronze badges

asked Feb 18, 2017 at 6:51

7

quote //mail.python.org/pipermail/tutor/2013-January/093474.html:
use subprocess.check_output[shell_command, shell=True]

import subprocess
cmd = '''
tail /var/log/omxlog | stdbuf -o0 grep player_new | while read i
do
    Values=$[omxd S | awk -F/ '{print $NF}']
    x1="${Values}"
    x7="${x1##*_}"
    x8="${x7%.*}"
    echo ${x8}
done    
'''
subprocess.check_output[cmd, shell=True]

I have try some other examples and it works.

answered Feb 18, 2017 at 7:20

wt.ccwt.cc

1839 bronze badges

1

Here is a pure python solution that I think does the same as your bash:

logname = '/var/log/omxlog'
with open[logname, 'rb'] as f:
    # not sure why you only want the last 10 lines, but here you go
    lines = f.readlines[][-10:]

for line in lines:
    if 'player_new' in line:
        omxd = os.popen['omxd S'].read[]
        after_ = omxd[line.rfind['_']+1:]
        before_dot = after_[:after_.rfind['.']]
        print[before_dot]

answered Feb 18, 2017 at 7:42

Stephen RauchStephen Rauch

45.7k30 gold badges105 silver badges126 bronze badges

5

Summary: To make a Python one-liner out of any multi-line Python script, replace the new lines with a new line character '\n' and pass the result into the exec[...] function. You can run this script from the outside [command line, shell, terminal] by using the command python -c "exec[...]".

[Don't Do This At Home] How To One-Linerize Every Multi-Line Python Script & Run It From The Shell

Problem: Given a multi-line code script in Python. How to execute this multi-line script in a single line of Python code? How to do it from the command line?

Example: Say, you have the following for loop with a nested if statement in the for loop body. You want to run this in a single line from your command line?

x = 10
for i in range[5]:
    if x%2 == 0:
        print[i]
    else:
        print[x]
    x = x - 1

'''
0
9
2
7
4
'''

The code prints five numbers to the shell. It only prints the odd values of x. If x takes an even value, it prints the loop variable i.

Let’s have a look at the three methods to solve this problem!

  • Method 1: exec[]
  • Method 2: From Command-Line | python -c + exec[]
  • Method 3: Use Ternary Operator to One-Linerize the Code
  • Python One-Liners Book: Master the Single Line First!
  • Programmer Humor

Method 1: exec[]

You can write any source code into a string and run the string using the built-in exec[] function in Python. This is little known—yet, hackers often use this to pack malicious code into a single line that’s seemingly harmless.

If you have code that spans multiple lines, you can pack it into a single-line string by using the newline character '\n' in your string:

# Method 1
exec['x = 10\nfor i in range[5]:\n    if x%2 ==0: print[i]\n    else: print[x]\n    x = x-1']

This one-liner code snippet is semantically equivalent to the above nested for loop that requires seven lines of code! The output is the same:

'''
0
9
2
7
4
'''

Try it yourself in our interactive code shell:

Exercise: Remove the else branch of this code. What’s the output? Run the code to check if you were right!

Method 2: From Command-Line | python -c + exec[]

Of course, you can also run this code from your Win/Linux/Mac command line or shell.

Just make sure to use the python -c prefix and then pack the single-line multi-liner into a string value that is passed as an argument to the python program.

This is how it looks in my Win 10 powershell:

PS C:\Users\xcent> python -c "exec['x = 10\nfor i in range[5]:\n    if x%2 ==0: print[i]\n    else: print[x]\n    x = x-1']"
0
9
2
7
4

Method 3: Use Ternary Operator to One-Linerize the Code

Of course, you can also create your own semantically-equivalent one-liner using a bit of creativity and Python One-Liner skills [e.g., acquired through reading my book “Python One-Liners” from NoStarch]!

In this code, you use the ternary operator:

# Method 3
for i in range[5]: print[10-i] if i%2 else print[i]

You can easily convince yourself that the code does the same thing in a single line!

Python One-Liners Book: Master the Single Line First!

Python programmers will improve their computer science skills with these useful one-liners.

Python One-Linerswill teach you how to read and write “one-liners”: concise statements of useful functionality packed into a single line of code. You’ll learn how to systematically unpack and understand any line of Python code, and write eloquent, powerfully compressed Python like an expert.

The book’s five chapters cover [1] tips and tricks, [2] regular expressions, [3] machine learning, [4] core data science topics, and [5] useful algorithms.

Detailed explanations of one-liners introduce key computer science concepts and boost your coding and analytical skills. You’ll learn about advanced Python features such as list comprehension, slicing, lambda functions, regular expressions, map and reduce functions, and slice assignments.

You’ll also learn how to:

  • Leverage data structures to solve real-world problems, like using Boolean indexing to find cities with above-average pollution
  • Use NumPy basics such as array, shape, axis, type, broadcasting, advanced indexing, slicing, sorting, searching, aggregating, and statistics
  • Calculate basic statistics of multidimensional data arrays and the K-Means algorithms for unsupervised learning
  • Create more advanced regular expressions using grouping and named groups, negative lookaheads, escaped characters, whitespaces, character sets [and negative characters sets], and greedy/nongreedy operators
  • Understand a wide range of computer science topics, including anagrams, palindromes, supersets, permutations, factorials, prime numbers, Fibonacci numbers, obfuscation, searching, and algorithmic sorting

By the end of the book, you’ll know how to write Python at its most refined, and create concise, beautiful pieces of “Python art” in merely a single line.

Get your Python One-Liners on Amazon!!

Programmer Humor

Question: How did the programmer die in the shower? ☠️

Answer: They read the shampoo bottle instructions:
Lather. Rinse. Repeat.

While working as a researcher in distributed systems, Dr. Christian Mayer found his love for teaching computer science students.

To help students reach higher levels of Python success, he founded the programming education website Finxter.com. He’s author of the popular programming book Python One-Liners [NoStarch 2020], coauthor of the Coffee Break Python series of self-published books, computer science enthusiast, freelancer, and owner of one of the top 10 largest Python blogs worldwide.

His passions are writing, reading, and coding. But his greatest passion is to serve aspiring coders through Finxter and help them to boost their skills. You can join his free email academy here.

How do I run multiple lines in Python shell?

You cannot split a statement into multiple lines in Python by pressing Enter . Instead, use the backslash [ \ ] to indicate that a statement is continued on the next line. In the revised version of the script, a blank space and an underscore indicate that the statement that was started on line 1 is continued on line 2.

How do you run multiple commands in Python?

You may chain together multiple commands using built-in shell operators [ && , || , ; , etc.].

How do you write a multiline statement in Python?

Multi-line Statement in Python: In Python, the statements are usually written in a single line and the last character of these lines is newline. To extend the statement to one or more lines we can use braces {}, parentheses [], square [], semi-colon “;”, and continuation character slash “\”.

How do I run multiple lines in command prompt?

The Windows command prompt [cmd.exe] allows the ^ [Shift + 6] character to be used to indicate line continuation. It can be used both from the normal command prompt [which will actually prompt the user for more input if used] and within a batch file.

Chủ Đề