Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 363791
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 12, 20262026-05-12T13:22:35+00:00 2026-05-12T13:22:35+00:00

How can I, in Windows, use the output of a script/command as an argument

  • 0

How can I, in Windows, use the output of a script/command as an argument for another script?
(A pipe | will not work here, since that other script doesn’t read from the standard input)

Too clarify: I have AnotherScript that needs an argument arg, e.g.:

AnotherScript 12

now I want the argument (12 in the example) to come from the output of a script, call it ScriptB. So I would like something along the lines of

AnotherScript (ScriptB)

The AnotherScript is actually a python script that requires an argument, and ScriptB is a cygwin bash script that produces some number, so the way I would like to use it is something like:

c:\Python26\python.exe AnotherScript (c:\cygwin|bin|bash --login -i ./ScriptB)

Thanks for the answers. However, given the laborious ‘for’ construct required, I’ve rewritten AnotherScript to read from the standard input. That seems like a better solution.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-12T13:22:35+00:00Added an answer on May 12, 2026 at 1:22 pm

    Note: All this requires the commands to be in a batch file. Hence the double % signs.

    You can use the for command to capture the output of the command:

    for /f "usebackq delims=" %%x in (`ScriptB`) do set args=%%x
    

    then you can use that output in another command:

    AnotherScript %args%
    

    This will cause %args% to contain the last line from ScriptB‘s output, though. If it only returns a single line you can roll this into one line:

    for /f "usebackq delims=" %%x in (`ScriptB`) do AnotherScript %%x
    

    When used outside a batch file you have to use %x instead of %%x.

    However, if ScriptB returns more than one line, AnotherScript runs for each of those lines. You can circumvent this—though only within a batch file—by breaking after the first loop iteration:

    for /f "usebackq delims=" %%x in (`ScriptB`) do AnotherScript %%x & goto :eof
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to use a temp directory that will be unique to this build.
I need to solve the following question which i can't get to work by
Can i get the source code for a WAMP stack installer somewhere? Any help
If all tables I want to delete from have the column gamer_id can i
Every time that I want to do a Layout, I'm getting a black layout
I have a new web app that is packaged as a WAR as part
I'm trying to build a C++ extension for python using swig. I've followed the
I have a snippet to create a 'Like' button for our news site: <iframe
I'm in the process of porting some code from Linux to Mac OS X.
i have a input tag which is non editable, but some times i need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.