Search found 225 matches

by Sponge Belly
13 Nov 2017 09:27
Forum: DOS Batch Forum
Topic: strimmer: a string trimmer
Replies: 5
Views: 6663

Re: strimmer: a string trimmer

Hello Again! :) Wow, I can’t believe this topic is over 4 years old! :shock: What an enthusiastic little puppy I was in those days… :roll: Anyways, I’ve revised the code for my string strimmer. It is now completely expansion-insensitive and exploits the option to omit the closing quote in the last p...
by Sponge Belly
05 Sep 2017 09:46
Forum: DOS Batch Forum
Topic: error appending file to itself
Replies: 3
Views: 3389

error appending file to itself

Hello All! I recently noticed some unexplained behaviour when appending a file to itself using type (from the command line): <nul set /p "=###" >hashes.tmp for /l %I in (1 1 8) do type hashes.tmp >>hashes.tmp So far, so good. The file size is 768 bytes, as expected. But when I do this: typ...
by Sponge Belly
05 Sep 2017 09:22
Forum: DOS Batch Forum
Topic: Variable expansion inside :: comments?
Replies: 10
Views: 8408

Re: Variable expansion inside :: comments?

@Dave Thanks for the refresher! @Phil Something like: set "var=%var:#=$$%" could potentially double a variable in size. And if the variable is over 4095 characters to begin with, it will overflow and cause a fatal error. Is there any way to catch such errors and take remedial action? - SB
by Sponge Belly
25 Aug 2017 07:56
Forum: DOS Batch Forum
Topic: Variable expansion inside :: comments?
Replies: 10
Views: 8408

Variable expansion inside :: comments?

Hello All! I was trying to catch errors from overflowing variables (is it possible, btw?) when I noticed the following: @echo off & setlocal enableextensions disabledelayedexpansion :: create variable containing 4k hashes set "hashFile=%tmp%\hashFile.tmp" if not exist "%hashFile%&...
by Sponge Belly
06 Apr 2017 13:03
Forum: DOS Batch Forum
Topic: Can anyone explain what is happening here
Replies: 3
Views: 5091

Re: Can anyone explain what is happening here

Hello All! In 2008, a Stack Overflow user asked how to echo a newline in Batch files. Someone called Ken posted this answer . This prompted a request for an explanation of how the code worked, but Ken was unforthcoming. So Jeb took up the slack and provided this now famous answer … two and a half ye...
by Sponge Belly
01 Mar 2017 09:41
Forum: DOS Batch Forum
Topic: proof of concept: alternate asynchronous non-blocking input
Replies: 7
Views: 8250

Re: proof of concept: alternate asynchronous non-blocking input

Hi Phil,

I didn’t know you could coax a tab from robocopy like that. Thanks for the tip! :)

- SB
by Sponge Belly
15 Feb 2017 16:10
Forum: DOS Batch Forum
Topic: Multi-line menu with options selection via DOSKEY
Replies: 15
Views: 35219

Re: Multi-line menu with options selection via DOSKEY

Hello All! Here’s an alternative approach I cobbled together: @echo off & setlocal enableextensions disabledelayedexpansion (call;) title Menu Demo mode con lines=15 cols=20 (set lf=^ %= DO NOT DELETE =% ) set ^"nl=^^^%lf%%lf%^%lf%%lf%^" set ^"\n=^^^%lf%%lf%^%lf%%lf%^^" cls e...
by Sponge Belly
14 Feb 2017 13:11
Forum: DOS Batch Forum
Topic: Some undocumented things with turned off command extensions
Replies: 14
Views: 13904

Re: Some undocumented things with turned off command extensions

Hi Penpen, Thanks for explaining GOTO’s mysterious behaviour. And you don’t need the body of a FOR loop or an IF block. An unconditional parenthesized block will do. See my previous post for a simplified code example. And you’re right about the ampersand as command separator. I don’t know what I was...
by Sponge Belly
12 Feb 2017 15:23
Forum: DOS Batch Forum
Topic: Some undocumented things with turned off command extensions
Replies: 14
Views: 13904

Re: Some undocumented things with turned off command extensions

Hi Again! I noticed the GOTO glitch when playing around with the code developed in the Foolproof Counting of Arguments topic. I’ve boiled it down to this: @echo off & setlocal enableextensions disabledelayedexpansion ( goto skip :skip echo(first label ) :skip echo(second label endlocal & got...
by Sponge Belly
12 Feb 2017 11:18
Forum: DOS Batch Forum
Topic: Some undocumented things with turned off command extensions
Replies: 14
Views: 13904

Re: Some undocumented things with turned off command extensions

Hello All! Interesting discussion. I’d like to add the following observations made while extensions were disabled. The PROMPT command doesn’t work. Neither does: set "prompt=@" Otoh… set prompt=@ does work. And another thing I’ve noticed is that if there are 2 labels with the same name, GO...
by Sponge Belly
06 Jan 2017 12:57
Forum: DOS Batch Forum
Topic: Putting a PC to sleep from a batch
Replies: 27
Views: 32476

Re: Putting a PC to sleep from a batch

Hi Penpen,

That’s perfect! Thanks again. :)

- SB
by Sponge Belly
05 Jan 2017 17:12
Forum: DOS Batch Forum
Topic: Putting a PC to sleep from a batch
Replies: 27
Views: 32476

Re: Putting a PC to sleep from a batch

Hi Penpen,

I’d like to make suspend.exe even more polite! :)

Please tell me the C# code for returning error level 0 if the program ran successfully, and error level 1 if there was a problem.

Thanks!

- SB
by Sponge Belly
04 Jan 2017 15:10
Forum: DOS Batch Forum
Topic: Putting a PC to sleep from a batch
Replies: 27
Views: 32476

Re: Putting a PC to sleep from a batch

Hi All! I borrowed Penpen’s C# Hybrid , transplantedd some code I found in this CodeHill article , and ended up with suspend.cmd: // // >nul 2>nul & @goto main /* :main @echo off & setlocal enableextensions disabledelayedexpansion set "csc=" pushd "%SystemRoot%\Microsoft.NET\F...
by Sponge Belly
31 Dec 2016 14:25
Forum: DOS Batch Forum
Topic: line numbers in find vs findstr
Replies: 10
Views: 13198

Re: line numbers in find vs findstr

Hi Again, Null characters are notoriously difficult to deal with, as discussed in Robust Line Counter . If an input text file is contaminated with null characters, the best course of action is to get rid of them. But if that isn’t possible, there are workarounds. For example, the following snippet a...