I'm using a bat file to track my external ip address, looking for any changes to try and figure out why I'm getting so many demands for secondary verification.
The fragment shown gives me output of the "time and day" and "ip " on separate lines of the outputted text file.
I would like it to be on a single line, but can't figure how.
Any ideas??
Code:( REM write information echo @ %TIME% %DATE% : %tad% echo My External Public IP : %ExtIP% )>echo %tad%>>"%LogFile%"
This is the output to my .txt file.
Code:@ 18:21:15.37 2018-12-20 : My External Public IP : xxx.x.xx.xx
+ Reply to Thread
Results 1 to 2 of 2
-
Last edited by sambat; 21st Dec 2018 at 14:35.
-
Stumbled blindly on the fix :
Changed:
Code:( REM write information echo @ %TIME% %DATE% : %tad% echo My External Public IP : %ExtIP% )>echo %tad%>>"%LogFile%"
Code:( REM write information echo My External Public IP : %ExtIP% @ %TIME% %DATE% : %tad% )>"%LogFile%"
Similar Threads
-
Simple Youtube-dl .Bat file for easy download
By WinSpirit in forum Video Streaming DownloadingReplies: 12Last Post: 19th Jul 2024, 15:13 -
BAT File Problem Adding Image To Audio Using ffMPEG
By Col in forum AudioReplies: 5Last Post: 7th Feb 2018, 10:43 -
Is there a guide to merging multiple DVD titles into a single output file?
By Lolipop Jones in forum DVD RippingReplies: 10Last Post: 11th Nov 2016, 19:19 -
10bit to 8bit bat file
By SvenVolfeid in forum Video ConversionReplies: 3Last Post: 13th Sep 2016, 09:10 -
MakeMKV Output Single MKV file
By efiste2 in forum Video ConversionReplies: 1Last Post: 16th Jan 2015, 18:26