Search found 252 matches

by T3RRY
02 Dec 2024 09:17
Forum: DOS Batch Forum
Topic: is there a way to implement so called "record" and "field" data structure?
Replies: 5
Views: 766

Re: is there a way to implement so called "record" and "field" data structure?

For the sort of use cases you've exampled, the following example show how to use a string as the fieldID to extract the relevant field values. In light of the sort of examples you've included, I've incorporated my menu macro into the script to show a method of referencing the values using a related ...
by T3RRY
01 Dec 2024 10:24
Forum: DOS Batch Forum
Topic: is there a way to implement so called "record" and "field" data structure?
Replies: 5
Views: 766

Re: is there a way to implement so called "record" and "field" data structure?

The below is my own implementation of this type of data structure, and includes a usage case example. Edit: added some more remarks, modified delimiters / field seperators to cope with records containg field values that match fieldIDs within the record. @echo off & setlocal enableExtensions enableDe...
by T3RRY
20 Nov 2024 02:42
Forum: DOS Batch Forum
Topic: The Daily Calendar Puzzle
Replies: 3
Views: 3371

Re: The Daily Calendar Puzzle

Very interesting. My first thought, just as a result if how similar the pieces are to tetriminos, is to make a tetris varient that plays out games until a solution is found. I'm sure there's probably some rules that could be applied to generating piece ordering to make solving faster. If I remember ...
by T3RRY
27 Jul 2024 08:42
Forum: DOS Batch Forum
Topic: AutoMacro - a function for Macro code generation
Replies: 0
Views: 29789

AutoMacro - a function for Macro code generation

After encountering a similar function earlier this week on SS64, and liking the apeal of improved readability without using %\n%, I decided the idea could be expanded on to provide new functionality. Ideas that got incorperated along the way: * Switches to add common use structures to macro definiti...
by T3RRY
16 Jul 2024 03:25
Forum: DOS Batch Forum
Topic: Progress bar
Replies: 6
Views: 26950

Re: Progress bar

Nice. Since your using escape sequences, there is another Sequence thats handy for filling space like this - ESC[nX ; where n is the number of spaces to be filled, IE the length of the prograss bar example (the macros are just a convenient way to animate it): @Echo off & Setlocal EnableDelayedExpans...
by T3RRY
05 Jul 2024 04:34
Forum: DOS Batch Forum
Topic: is there a way to use ECHO <esc>[32;40m without adding an extra line?
Replies: 4
Views: 25883

Re: is there a way to use ECHO <esc>[32;40m without adding an extra line?

nnnmmm wrote:
05 Jul 2024 03:04

Code: Select all

ECHO [32;40m
ECHO =================
ECHO Quake 4 - selector
ECHO =================
this is what i want but WITHOUT adding a line

Code: Select all

<nul Set /P "=[32;40m"
ECHO =================
ECHO Quake 4 - selector
ECHO =================
One simple solution
by T3RRY
05 Jul 2024 01:15
Forum: DOS Batch Forum
Topic: How to output a range of lines from a text file using findstr
Replies: 5
Views: 27559

Re: How to output a range of lines from a text file using findstr

Some interesting Approaches here, but it seems to me it would be simpler to parse the output of findstr with the /V switch and perform conditional checks on the first token token to determine if the line corresponds to the desired ranges - unless the intent is specifically to to support Regex expres...
by T3RRY
21 May 2024 11:35
Forum: DOS Batch Forum
Topic: IF Evaluation Values Are ECHO-Suppressed When Beginning With Colon ":". Why?
Replies: 7
Views: 13351

Re: IF Evaluation Values Are ECHO-Suppressed When Beginning With Colon ":". Why?

Each leading-colon-equation token is echo-suppressed in a nested IF too: C:\Test>FOR %$ in ($)do IF :0 == :0 IF :0 == false ECHO C:\Test>IF IF ECHO Reviewing the command parsing behaviour as described on this forum and Stackoverflow, I believe Jeb is bang on the money with regards to the behaviour ...
by T3RRY
18 May 2024 06:39
Forum: DOS Batch Forum
Topic: IF Evaluation Values Are ECHO-Suppressed When Beginning With Colon ":". Why?
Replies: 7
Views: 13351

Re: IF Evaluation Values Are ECHO-Suppressed When Beginning With Colon ":". Why?

Nothing to add on the why, but another finding to add

Using CMD /c to conduct the If operation will show the full command

for testing from the command line:

Code: Select all

@For %G in (":0" "0" "0:")Do cmd /c if %~G==%~G echo [%~G==%~G true]
@For %G in (":0" "0" "0:")Do if %~G==%~G echo [%~G==%~G true]
by T3RRY
11 Feb 2024 13:44
Forum: DOS Batch Forum
Topic: Macro for Dummies
Replies: 16
Views: 40752

Re: Macro for Dummies

for /f %%! in ("! ^! ^^^!") Why is there a '^' before the second '!' in the %%! definition above? I've run lots of tests without that '^', and never had any problem with that: for /f %%! in ("! ! ^^^!") because the behavior differs marginally. ultimately though, ts a preference to convery the purpo...
by T3RRY
10 Feb 2024 23:12
Forum: DOS Batch Forum
Topic: Macro for Dummies
Replies: 16
Views: 40752

Re: Macro for Dummies

Steffen has answered well here the basics, with one minor ommission The newline variable used for multiline definitions only works within parenthesised codeblocks A simple example @Echo off (Set $\n=^^^ %= DO NOT MODIFY $\n Newline variable definition =%) Set example1=Echo Hello World 1 %$\n% Pause ...
by T3RRY
10 Feb 2024 00:27
Forum: DOS Batch Forum
Topic: Macro for Dummies
Replies: 16
Views: 40752

Macro for Dummies

As requested by @miskox at https://www.dostips.com/forum/viewtopic.php?f=3&t=10983#p69429 As remarked within the code, this template is intended to make it easy to create macro's that take arguments The template does nothing with the arguments other than splitting them and returning them in an array...
by T3RRY
18 Jan 2024 16:00
Forum: DOS Batch Forum
Topic: How to copy a txt file into multiple txt files in a destination folder
Replies: 3
Views: 10464

Re: How to copy a txt file into multiple txt files in a destination folder

Hello All, I tried copying the content of a txt file into multiple txt files in a destination folder but not getting the expected result. I've tried : "Copy my file.txt floder\×.txt" but it's not updating all the txt files. Can someone help me out? why would you expect it to? Copy cannot append to ...
by T3RRY
18 Jan 2024 12:39
Forum: DOS Batch Forum
Topic: infinite loop with break condition
Replies: 75
Views: 162233

Re: infinite loop with break condition

Use substring substitution to replace the break variable for each additional while IE \b1 for the first break, \b2 for the second and so on I understand the advantage of generating unique break variable names for each loop. But I don't understand which substring substitution would allow to do that....
by T3RRY
18 Jan 2024 08:31
Forum: DOS Batch Forum
Topic: infinite loop with break condition
Replies: 75
Views: 162233

Re: infinite loop with break condition

(By analogy with WEND, I renamed yesterday's ENDREP as REND.) Particularly in the situation of defining multiple Whiles into a macro, there's a simple alternative to WEND Use substring substitution to replace the break variable for each additional while IE \b1 for the first break, \b2 for the secon...