Vovsla Posted August 2, 2022 Posted August 2, 2022 When i run command from cmd i can get output data wsl -e pwd Or i can redirect it to file wsl -e pwd > test.txt But when i run it in autoit i can't get anything $PID = Run(@ComSpec & ' /k wsl -e pwd', @WindowsDir & '\System32', @SW_SHOW, 3) While 1 $STDOut = StdoutRead($PID) If @error Then ExitLoop If $STDOut <> '' Then ConsoleWrite($STDOut) EndIf WEnd Also i can't redirect it to file, i just have message "wsl it's not program or command" Run(@ComSpec & ' /k wsl.exe -e pwd > tst.txt', @WindowsDir & '\System32', @SW_SHOW) How can i run wsl and get stdout ?
Moderators Melba23 Posted August 2, 2022 Moderators Posted August 2, 2022 Moved to the appropriate forum. Moderation Team Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind Open spoiler to see my UDFs: Spoiler ArrayMultiColSort ---- Sort arrays on multiple columnsChooseFileFolder ---- Single and multiple selections from specified path treeview listingDate_Time_Convert -- Easily convert date/time formats, including the language usedExtMsgBox --------- A highly customisable replacement for MsgBoxGUIExtender -------- Extend and retract multiple sections within a GUIGUIFrame ---------- Subdivide GUIs into many adjustable framesGUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView itemsGUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeViewMarquee ----------- Scrolling tickertape GUIsNoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxesNotify ------------- Small notifications on the edge of the displayScrollbars ----------Automatically sized scrollbars with a single commandStringSize ---------- Automatically size controls to fit textToast -------------- Small GUIs which pop out of the notification area
Vovsla Posted August 2, 2022 Author Posted August 2, 2022 I'm sorry I was confused to work with WSL enough to add #AutoIt3Wrapper_UseX64=Y
Vovsla Posted August 17, 2022 Author Posted August 17, 2022 I can get text from WSL when script ended script.py print('printtest') script.au3 #AutoIt3Wrapper_UseX64=Y $PID = Run(@ComSpec & ' /k wsl.exe -e python3 script.py', @ScriptDir, @SW_SHOW, 3) While 1 $STDOut = StdoutRead($PID) If @error Then ExitLoop If $STDOut <> '' Then ConsoleWrite($STDOut) EndIf Sleep(1000) WEnd But i can't get text during running script script.py import time While 1: print('printtest') time.sleep(1) script.au3 #AutoIt3Wrapper_UseX64=Y $PID = Run(@ComSpec & ' /k wsl.exe -e python3 2.py', @ScriptDir, @SW_SHOW, 3) While 1 $STDOut = StdoutRead($PID) If @error Then ExitLoop If $STDOut <> '' Then ConsoleWrite($STDOut) EndIf Sleep(1000) WEnd How can i get text during running script? When i use "sys.stdout.write" instead "print" it's also does not working
boom221 Posted August 20, 2022 Posted August 20, 2022 Does your python script work the way you want if you call python directly (without wsl) from the command line interface?
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now