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 8800171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T00:31:01+00:00 2026-06-14T00:31:01+00:00

I have a requirement to, within a windows batch file, read the first available

  • 0

I have a requirement to, within a windows batch file, read the first available line from a text file, pass it to a variable and mark the name\line as used

An example of the file is below.

apple
pear
orange

The script would start with ‘apple’, pass ‘apple’ to a variable to be used later in the script (I know how to do that bit), and then write back that line to read &apple, the ‘&’ works as a marker to say it’s been used.

The file would then look like:

&apple
pear
orange

the next time the batch file is run it would take ‘pear’, pass it to a variable and mark it with a & making it look like:

&apple
&pear
orange

I started by trying to find ‘&’ and then trying to move to the next line, but I’m failing after about 12 hours of trying. This is what I got so far .. not much:

for /f “tokens=1” %l in (‘name.txt’) do (Find /v “&” /v “^—- ^$”) (For /F %n in (%l) do (set NewName=%n))

Thanks

  • 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-06-14T00:31:03+00:00Added an answer on June 14, 2026 at 12:31 am

    Running this on the.file would modify each line in turn;

    @echo off
    setlocal enabledelayedexpansion
    type nul > the.file.temp
    set last=
    for /F "tokens=*" %%A in (the.file) do (
        set line=%%A
        if "!line:~0,1!" neq "&" if "!last!" equ "" (
            set last=!line!
            set line=^&!line!
        )
        echo !line! >> the.file.temp
    )
    
    echo last value is !last!
    type the.file.temp > the.file
    

    (If the line does not begin with & and the variable last is empty, put the line in last & modify line with a leading &. Always append line to a temp file, renaming when done)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a requirement to enable/disable file sharing from with in the App. My
I have a requirement to validate an XML signature from within Silverlight. In full
In our project we have requirement that, after receiving sms message from third party
I have a requirement within the same web application to set 2 session timeouts.
I have a requirement to perform HTTP authentication logic within a servlet application, rather
I have a requirement to have an event that calls an ActiveX control from
I have a requirement to pass bulk data between a .NET (c#) application and
I have the requirement to contain a pointer of same class within a class
I have a client that has a requirement to display PDFs directly within a
I'm relatively new to using Windows Workflow but we have a requirement whereby all

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.