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

What windows C IDE can I use that will use gcc to compile and
I know on client side (javascript) you can use windows.location.hash but could not find
How can I use the Windows command line to change the extensions of thousands
I currently use visual studio 2008 for creating projects that can run on windows.
Can you use windows hooks or other methods to do code injection with c#?
Can you use Windows Workflow and Compact Framework 3.5? I've just got an evaluation
How can I write to files using Python (on Windows) and use the Unix
Can anyone recommend a decent SFTP library for use with Windows C++ apps? If
Can I use shared memory on Windows in order to have a common memory
Can someone explain how to use JSON-RPC.net in my application for windows phone. When

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.