Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Python syntax in Linux
#1
I am currently learning Python in school and have truly enjoyed it. This week we are to working with subprocess. we are to run commands and take screenshots, but the commands they have given us are all for Windows and I run Linux. out of the 15 commands I have figured out all except for one.

The question says:
Use subprocess.Popen to execute the Windows dir command and have its output placed in a text file named pythonOut.txt Hint: The argument for Popen in this case will be subprocess.Popen('C:\\windows\\system32\\cmd.exe "/c dir C:\\ >> C:\\pythonOut.txt"')

I have been racking my brain to find how to do this. I have found that subprocess.Popen(['ls', '-a']) will pull a directory and display it on the screen but how do I output that into a file using a single command line as the Windows example above?

Thank you for your help,

St0rmcr0w
Reply
#2
You need to use subprocess.PIPE for stdout or use a file-like object.
If you open a file, you've a file like object. Popen expects the write method on the stdout/stderr object.


from pathlib import Path
import subprocess

def run_stdout_save(cmd, file_append):
    """
    Append stdout of cmd to a file.
    This is a blocking function
    """
    # open the file in append raw bytes mode
    # this will prevent encoding errors
    with open(file_append, "ab") as fd:

        # suppress window
        startup_info = subprocess.STARTUPINFO()
        startup_info.dwFlags |= subprocess.STARTF_USESHOWWINDOW

        proc = subprocess.Popen(cmd, stdout=fd, startupinfo=startup_info)
        # wait until it's finished
        proc.wait()


# using pathlib to create the paths
stdout_file = Path.home() / "Desktop/proc_stdout.txt"

cmd = "C:\\windows\\system32\\cmd.exe"
# each argument is a str element in the list.
run_stdout_save([cmd, "/c",  "dir", "C:\\"], stdout_file)
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply
#3
(Jul-29-2021, 12:16 PM)St0rmcr0w Wrote: I have found that subprocess.Popen(['ls', '-a']) will pull a directory and display it on the screen but how do I output that into a file using a single command line as the Windows example above?
I would do it like this on Linux.
So run() that should be used in most cases got new capture_output parameter in Python 3.7>.
import subprocess

ls_files = subprocess.run(["ls", "-l", "/home/tom"], capture_output=True)
print(ls_files.stdout.decode())
with open('ls_out.txt', 'w') as f:
    f.write(ls_files.stdout.decode())
subprocess dok Wrote:The recommended approach to invoking subprocesses is to use the run() function for all use cases it can handle.
For more advanced use cases, the underlying Popen interface can be used directly.
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Linux, Python, C ++, Brain2 and errors. PiotrBujakowski 0 952 Jun-24-2024, 03:41 PM
Last Post: PiotrBujakowski
  Is possible to run the python command to call python script on linux? cuten222 6 2,284 Jan-30-2024, 09:05 PM
Last Post: DeaD_EyE
  Syntax error while executing the Python code in Linux DivAsh 8 4,618 Jul-19-2023, 06:27 PM
Last Post: Lahearle
  where to get portable Python for Linux (Fedora)? python001 5 8,655 Nov-01-2020, 05:23 PM
Last Post: Larz60+
  Python in Linux environment on RPI kendias 22 14,116 Sep-05-2020, 03:04 AM
Last Post: K_Research
  How do I pick the right python in Linux env? MDRI 9 5,403 Jun-27-2020, 05:40 PM
Last Post: snippsat
  control a linux program with python Fifoux082 9 5,490 May-08-2020, 04:24 PM
Last Post: Fifoux082
  Python version on Linux whois1230 5 4,697 Apr-10-2020, 07:12 PM
Last Post: buran
  Unable to install python-wnck python-imaging on Void Linux linuxlight 1 3,954 Mar-08-2020, 03:53 AM
Last Post: Larz60+
  Python in Kali Linux coolcassie 2 9,357 Dec-02-2019, 12:48 PM
Last Post: coolcassie

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020