Its frustrating when you spend an hour looking for a software application to do something for you. Even more so when there's a way for the operating system to do it for you in the first place!
Dated: Saturday, March 22, 2008.
Lets start off here by outlining the situation. A, leads to B, etc.
You'd have thought it'd be a simple matter to join a bunch of files together into a single, larger file wouldn't you? And guess what? It is! But I didn't know that at the time did I? That's what I get for not using the command line very often.
So I tried several programs, some of which worked better than others but all of which annoyed me for one reason or another. then I find The How-to Geek's article about merging log files together and it sparks something in my cranium...
I won't repeat the article itself, but will make a few points.
for %f in (*.log) do type "%f" >> aggregate.txt
for %f in (*.mp3) do type "%f" >> ../01.mp3
There are readers of these little posts who will laugh at my sheer stupidity for not thinking of this sooner. There are also readers who would even find the typing of 12 commands in a prompt too much to accomplish this simple task. Of course they have evry right - I could have written a quick batch file to loop through the folders in the same way the type command loops through the files. This is, however, one of those stupid tasks that you only ever seem to think about when you need and that only ever seems to come up so infrequently as to make it not worth going out of your way for.
Anyway: rant over. I simply wished to give you a laugh, some insight, or confusion as to what the hell I'm talking about.
Hits: 6,333.