.net – Powershell:通过调用操作符执行命令的管道输入
发布时间:2020-12-14 02:51:19 所属栏目:Windows 来源:网络整理
导读:我需要通过调用操作符()动态执行批处理文件.批处理文件接受参数,但我还需要在stdin上传入一些输入.我认为这会奏效: $command = "somebatchfile.bat""y" | $command arg1 arg2 但是,“y”不会在stdin中传递.如果我像这样执行批处理文件: "y" | somebatchfil
我需要通过调用操作符(&)动态执行批处理文件.批处理文件接受参数,但我还需要在stdin上传入一些输入.我认为这会奏效:
$command = "somebatchfile.bat" "y" | & $command arg1 arg2 但是,“y”不会在stdin中传递.如果我像这样执行批处理文件: "y" | somebatchfile.bat arg1 arg2 然后一切都按预期工作.但我不能硬编码路径. 如何执行动态确定的批处理文件,该文件接受参数并通过一些标准输入? 更新 为了重现这一点,我做了以下事情: script.bat: @echo off call script2.bat %* script2.bat: @echo off set /p x="Enter: " echo foo %* %x% Powershell会议: > $command = "./script.bat" > "yes!" | & $command whatever Enter: foo whatever yes! 所以它在这里按预期工作.但是,当我将它与实际的批处理文件(android.bat,Android SDK的一部分)一起使用时,输入不会传递给java.exe. 这是android.bat的内容: n@echo off rem Copyright (C) 2007 The Android Open Source Project rem rem Licensed under the Apache License,Version 2.0 (the "License"); rem you may not use this file except in compliance with the License. rem You may obtain a copy of the License at rem rem http://www.apache.org/licenses/LICENSE-2.0 rem rem Unless required by applicable law or agreed to in writing,software rem distributed under the License is distributed on an "AS IS" BASIS,rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND,either express or implied. rem See the License for the specific language governing permissions and rem limitations under the License. rem Useful links: rem Command-line reference: rem http://technet.microsoft.com/en-us/library/bb490890.aspx rem don't modify the caller's environment setlocal enableextensions rem Set up prog to be the path of this script,including following symlinks,rem and set up progdir to be the fully-qualified pathname of its directory. set prog=%~f0 rem Grab current directory before we change it set work_dir=%cd% rem Change current directory and drive to where the script is,to avoid rem issues with directories containing whitespaces. cd /d %~dp0 rem Check we have a valid Java.exe in the path. set java_exe= call libfind_java.bat if not defined java_exe goto :EOF set jar_path=libsdkmanager.jar;libswtmenubar.jar rem Set SWT.Jar path based on current architecture (x86 or x86_64) for /f "delims=" %%a in ('"%java_exe%" -jar libarchquery.jar') do set swt_path=lib%%a :MkTempCopy rem Copy android.bat and its required libs to a temp dir. rem This avoids locking the tool dir in case the user is trying to update it. set tmp_dir=%TEMP%temp-android-tool xcopy "%swt_path%" "%tmp_dir%%swt_path%" /I /E /C /G /R /Y /Q > nul copy /B /D /Y libcommon.jar "%tmp_dir%lib" > nul copy /B /D /Y libcommons-codec* "%tmp_dir%lib" > nul copy /B /D /Y libcommons-compress* "%tmp_dir%lib" > nul copy /B /D /Y libcommons-logging* "%tmp_dir%lib" > nul copy /B /D /Y libdvlib.jar "%tmp_dir%lib" > nul copy /B /D /Y libgson* "%tmp_dir%lib" > nul copy /B /D /Y libguava* "%tmp_dir%lib" > nul copy /B /D /Y libhttpclient* "%tmp_dir%lib" > nul copy /B /D /Y libhttpcore* "%tmp_dir%lib" > nul copy /B /D /Y libhttpmime* "%tmp_dir%lib" > nul copy /B /D /Y liblayoutlib-api.jar "%tmp_dir%lib" > nul copy /B /D /Y liborg-eclipse-* "%tmp_dir%lib" > nul copy /B /D /Y libsdk* "%tmp_dir%lib" > nul copy /B /D /Y libswtmenubar.jar "%tmp_dir%lib" > nul rem jar_path and swt_path are relative to PWD so we don't need to adjust them,just change dirs. set tools_dir=%cd% cd /d "%tmp_dir%" :EndTempCopy rem The global ANDROID_SWT always override the SWT.Jar path if defined ANDROID_SWT set swt_path=%ANDROID_SWT% if exist "%swt_path%" goto SetPath echo ERROR: SWT folder '%swt_path%' does not exist. echo Please set ANDROID_SWT to point to the folder containing swt.jar for your platform. goto :EOF :SetPath rem Finally exec the java program and end here. REM set REMOTE_DEBUG=-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=y,address=8000 call "%java_exe% %REMOTE_DEBUG%" "-Dcom.android.sdkmanager.toolsdir=%tools_dir%" "-Dcom.android.sdkmanager.workdir=%work_dir%" -classpath "%jar_path%;%swt_path%swt.jar" com.android.sdkmanager.Main %* rem EOF java应用程序的执行提示许可证接受,这就是为什么我想把“y”管道输入它.如果我直接管道它可以工作,但如果我通过Powershell的呼叫运算符管道它没有. 这有效: "y" | android.bat update sdk -u -a -t 38 这不是: $command = "android.bat" "y" | & $command update sdk -u -a -t 38 任何人都可以开导我吗? 解决方法
我相信使用&调用可执行文件要求参数是字符串数组而不仅仅是字符串.我认为PowerShell对如何处理这些输入感到困惑.因此,根据您的示例,类似这样的内容应该正确传递输入和参数:
$command = ".script1.bat" $x = "update sdk|-u|-a|-t 38" "myinput" | & $command $x.Split("|") 结果输出 Enter: foo "update sdk" -u -a "-t 38" myinput (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |
相关内容
- windows-7 – 如何在断开与RDP会话的连接时保持用户登录
- windows-server-2003 – 如何在Server 2003上无限期地安排任
- 在Windows中启用程序多次运行?
- 如何从microsoft为.NET 4 C#编译器指定.NET版本?
- windows – 如何找出连接到互联网的NIC?
- bat删除过期文件(FORFILES)
- windows – 如何防止Print-Screen捕获单个窗口?
- winforms – 如何在高DPI上扩展Windows窗体按钮的图像?
- 在.NET DLL中存储连接字符串的最佳方式是什么?
- 重新安排WPF中的ListBox项目(如Windows 8启动屏幕图块)
推荐文章
站长推荐
- Task Scheduler如何在Windows 7上保存密码?
- windows – 对netstat -t意味着什么
- windows – Eclipse颜色主题和OS L&F
- 基于WIX的安装程序如何为32位和64位Windows操作系
- mfc – Win32:UpdateLayeredWindow有时会失败(错
- windows-8 – 评价应用程序时出错
- Windows – IIS无法提供文件名中包含重音和空格的
- 如何将两个windows vc静态库合并为一个
- windows-server-2003 – 如何增加Windows Server
- active-directory – 尝试将Active Directory域服
热点阅读