Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Sed Command : Line Start with
Name: benjagol Date: May 30, 2005 at 03:08:06 Pacific OS: WIN2000 CPU/Ram: 4/2
Comment:
Hi,
I need to append to previous line all the line not starting by 2005, here is a example :
Summary: In a dos batch I am searching one txt file line by line. How can I find line that starts with some string? So I need something like: if line starts with "string" do (...) in dos batch! Thx for help! ...
Summary: In batch files you can refer to command line arguments with %. Example: @echo off echo j | deltree %1 > nul The %1 in the batch file will be replaced by the first argument. %0 is the batch-file itself...
Summary: Does anyone know how to use the command line arguments with Visual C++? I have used it in Linux like this: void main (int argc, char* argv[]) and it worked fine, I wonder if it is possible in windows/...